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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file lltextureview.h
  3.  * @brief LLTextureView class header file
  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_LLTEXTUREVIEW_H
  33. #define LL_LLTEXTUREVIEW_H
  34. #include "llcontainerview.h"
  35. class LLViewerFetchedTexture;
  36. class LLTextureBar;
  37. class LLGLTexMemBar;
  38. class LLTextureView : public LLContainerView
  39. {
  40. friend class LLTextureBar;
  41. friend class LLGLTexMemBar;
  42. protected:
  43. LLTextureView(const Params&);
  44. friend class LLUICtrlFactory;
  45. public:
  46. ~LLTextureView();
  47. /*virtual*/ void draw();
  48. /*virtual*/ BOOL handleMouseDown(S32 x, S32 y, MASK mask);
  49. /*virtual*/ BOOL handleMouseUp(S32 x, S32 y, MASK mask);
  50. /*virtual*/ BOOL handleKey(KEY key, MASK mask, BOOL called_from_parent);
  51. static void addDebugImage(LLViewerFetchedTexture* image) { sDebugImages.insert(image); }
  52. static void removeDebugImage(LLViewerFetchedTexture* image) { sDebugImages.insert(image); }
  53. static void clearDebugImages() { sDebugImages.clear(); }
  54. private:
  55. BOOL addBar(LLViewerFetchedTexture *image, BOOL hilight = FALSE);
  56. void removeAllBars();
  57. private:
  58. BOOL mFreezeView;
  59. BOOL mOrderFetch;
  60. BOOL mPrintList;
  61. LLTextBox *mInfoTextp;
  62. std::vector<LLTextureBar*> mTextureBars;
  63. U32 mNumTextureBars;
  64. LLGLTexMemBar* mGLTexMemBar;
  65. public:
  66. static std::set<LLViewerFetchedTexture*> sDebugImages;
  67. };
  68. class LLGLTexSizeBar;
  69. class LLTextureSizeView : public LLContainerView
  70. {
  71. protected:
  72. LLTextureSizeView(const Params&);
  73. friend class LLUICtrlFactory;
  74. public:
  75. ~LLTextureSizeView();
  76. /*virtual*/ void draw();
  77. /*virtual*/ BOOL handleHover(S32 x, S32 y, MASK mask) ;
  78. void setType(S32 type) {mType = type ;}
  79. enum
  80. {
  81. TEXTURE_MEM_OVER_SIZE,
  82. TEXTURE_MEM_OVER_CATEGORY
  83. };
  84. private:
  85. //draw background for TEXTURE_MEM_OVER_SIZE
  86. F32 drawTextureSizeDistributionGraph() ;
  87. //draw real-time texture mem bar over size
  88. void drawTextureSizeGraph();
  89. //draw background for TEXTURE_MEM_OVER_CATEGORY
  90. F32 drawTextureCategoryDistributionGraph() ;
  91. //draw real-time texture mem bar over category
  92. void drawTextureCategoryGraph();
  93. private:
  94. std::vector<LLGLTexSizeBar*> mTextureSizeBar ;
  95. LLRect mTextureSizeBarRect ;
  96. S32    mTextureSizeBarWidth ;
  97. S32    mType ;
  98. };
  99. extern LLTextureView *gTextureView;
  100. extern LLTextureSizeView *gTextureSizeView;
  101. extern LLTextureSizeView *gTextureCategoryView;
  102. #endif // LL_TEXTURE_VIEW_H