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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file lltexlayerparams.h
  3.  * @brief Texture layer parameters, used by lltexlayer.
  4.  *
  5.  * $LicenseInfo:firstyear=2002&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2002-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_LLTEXLAYERPARAMS_H
  33. #define LL_LLTEXLAYERPARAMS_H
  34. #include "llviewervisualparam.h"
  35. class LLImageRaw;
  36. class LLImageTGA;
  37. class LLTexLayer;
  38. class LLTexLayerInterface;
  39. class LLViewerTexture;
  40. class LLVOAvatar;
  41. class LLWearable;
  42. class LLTexLayerParam : public LLViewerVisualParam
  43. {
  44. public: 
  45. LLTexLayerParam(LLTexLayerInterface *layer);
  46. LLTexLayerParam(LLVOAvatar *avatar);
  47. /*virtual*/ BOOL setInfo(LLViewerVisualParamInfo *info, BOOL add_to_avatar  );
  48. /*virtual*/ LLViewerVisualParam* cloneParam(LLWearable* wearable) const = 0;
  49. protected:
  50. LLTexLayerInterface* mTexLayer;
  51. LLVOAvatar*             mAvatar;
  52. };
  53. //-----------------------------------------------------------------------------
  54. // LLTexLayerParamAlpha
  55. // 
  56. class LLTexLayerParamAlpha : public LLTexLayerParam
  57. {
  58. public:
  59. LLTexLayerParamAlpha( LLTexLayerInterface* layer );
  60. LLTexLayerParamAlpha( LLVOAvatar* avatar );
  61. /*virtual*/ ~LLTexLayerParamAlpha();
  62. /*virtual*/ LLViewerVisualParam* cloneParam(LLWearable* wearable = NULL) const;
  63. // LLVisualParam Virtual functions
  64. ///*virtual*/ BOOL parseData(LLXmlTreeNode* node);
  65. /*virtual*/ void apply( ESex avatar_sex ) {}
  66. /*virtual*/ void setWeight(F32 weight, BOOL upload_bake);
  67. /*virtual*/ void setAnimationTarget(F32 target_value, BOOL upload_bake); 
  68. /*virtual*/ void animate(F32 delta, BOOL upload_bake);
  69. // LLViewerVisualParam Virtual functions
  70. /*virtual*/ F32 getTotalDistortion() { return 1.f; }
  71. /*virtual*/ const LLVector3& getAvgDistortion() { return mAvgDistortionVec; }
  72. /*virtual*/ F32 getMaxDistortion() { return 3.f; }
  73. /*virtual*/ LLVector3 getVertexDistortion(S32 index, LLPolyMesh *poly_mesh) { return LLVector3(1.f, 1.f, 1.f);}
  74. /*virtual*/ const LLVector3* getFirstDistortion(U32 *index, LLPolyMesh **poly_mesh) { index = 0; poly_mesh = NULL; return &mAvgDistortionVec;};
  75. /*virtual*/ const LLVector3* getNextDistortion(U32 *index, LLPolyMesh **poly_mesh) { index = 0; poly_mesh = NULL; return NULL;};
  76. // New functions
  77. BOOL render( S32 x, S32 y, S32 width, S32 height );
  78. BOOL getSkip() const;
  79. void deleteCaches();
  80. BOOL getMultiplyBlend() const;
  81. private:
  82. LLPointer<LLViewerTexture> mCachedProcessedTexture;
  83. LLPointer<LLImageTGA> mStaticImageTGA;
  84. LLPointer<LLImageRaw> mStaticImageRaw;
  85. BOOL mNeedsCreateTexture;
  86. BOOL mStaticImageInvalid;
  87. LLVector3 mAvgDistortionVec;
  88. F32 mCachedEffectiveWeight;
  89. public:
  90. // Global list of instances for gathering statistics
  91. static void dumpCacheByteCount();
  92. static void getCacheByteCount( S32* gl_bytes );
  93. typedef std::list< LLTexLayerParamAlpha* > param_alpha_ptr_list_t;
  94. static param_alpha_ptr_list_t sInstances;
  95. };
  96. class LLTexLayerParamAlphaInfo : public LLViewerVisualParamInfo
  97. {
  98. friend class LLTexLayerParamAlpha;
  99. public:
  100. LLTexLayerParamAlphaInfo();
  101. /*virtual*/ ~LLTexLayerParamAlphaInfo() {};
  102. /*virtual*/ BOOL parseXml(LLXmlTreeNode* node);
  103. private:
  104. std::string mStaticImageFileName;
  105. BOOL mMultiplyBlend;
  106. BOOL mSkipIfZeroWeight;
  107. F32 mDomain;
  108. };
  109. //
  110. // LLTexLayerParamAlpha
  111. //-----------------------------------------------------------------------------
  112. //-----------------------------------------------------------------------------
  113. // LLTexLayerParamColor
  114. //
  115. class LLTexLayerParamColor : public LLTexLayerParam
  116. {
  117. public:
  118. enum EColorOperation
  119. {
  120. OP_ADD = 0,
  121. OP_MULTIPLY = 1,
  122. OP_BLEND = 2,
  123. OP_COUNT = 3 // Number of operations
  124. };
  125. LLTexLayerParamColor( LLTexLayerInterface* layer );
  126. LLTexLayerParamColor( LLVOAvatar* avatar );
  127. /* virtual */ ~LLTexLayerParamColor();
  128. /*virtual*/ LLViewerVisualParam* cloneParam(LLWearable* wearable = NULL) const;
  129. // LLVisualParam Virtual functions
  130. ///*virtual*/ BOOL parseData(LLXmlTreeNode* node);
  131. /*virtual*/ void apply( ESex avatar_sex ) {}
  132. /*virtual*/ void setWeight(F32 weight, BOOL upload_bake);
  133. /*virtual*/ void setAnimationTarget(F32 target_value, BOOL upload_bake);
  134. /*virtual*/ void animate(F32 delta, BOOL upload_bake);
  135. // LLViewerVisualParam Virtual functions
  136. /*virtual*/ F32 getTotalDistortion() { return 1.f; }
  137. /*virtual*/ const LLVector3& getAvgDistortion() { return mAvgDistortionVec; }
  138. /*virtual*/ F32 getMaxDistortion() { return 3.f; }
  139. /*virtual*/ LLVector3 getVertexDistortion(S32 index, LLPolyMesh *poly_mesh) { return LLVector3(1.f, 1.f, 1.f); }
  140. /*virtual*/ const LLVector3* getFirstDistortion(U32 *index, LLPolyMesh **poly_mesh) { index = 0; poly_mesh = NULL; return &mAvgDistortionVec;};
  141. /*virtual*/ const LLVector3* getNextDistortion(U32 *index, LLPolyMesh **poly_mesh) { index = 0; poly_mesh = NULL; return NULL;};
  142. // New functions
  143. LLColor4 getNetColor() const;
  144. protected:
  145. virtual void onGlobalColorChanged(bool upload_bake) {}
  146. private:
  147. LLVector3 mAvgDistortionVec;
  148. };
  149. class LLTexLayerParamColorInfo : public LLViewerVisualParamInfo
  150. {
  151. friend class LLTexLayerParamColor;
  152. public:
  153. LLTexLayerParamColorInfo();
  154. virtual ~LLTexLayerParamColorInfo() {};
  155. BOOL parseXml( LLXmlTreeNode* node );
  156. LLTexLayerParamColor::EColorOperation getOperation() const { return mOperation; }
  157. private:
  158. enum { MAX_COLOR_VALUES = 20 };
  159. LLTexLayerParamColor::EColorOperation mOperation;
  160. LLColor4 mColors[MAX_COLOR_VALUES];
  161. S32 mNumColors;
  162. };
  163. //
  164. // LLTexLayerParamColor
  165. //-----------------------------------------------------------------------------
  166. #endif