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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llpolymorph.h
  3.  * @brief Implementation of LLPolyMesh class
  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_LLPOLYMORPH_H
  33. #define LL_LLPOLYMORPH_H
  34. #include <string>
  35. #include <vector>
  36. #include "llviewervisualparam.h"
  37. class LLPolyMeshSharedData;
  38. class LLVOAvatar;
  39. class LLVector2;
  40. class LLViewerJointCollisionVolume;
  41. class LLWearable;
  42. //-----------------------------------------------------------------------------
  43. // LLPolyMorphData()
  44. //-----------------------------------------------------------------------------
  45. class LLPolyMorphData
  46. {
  47. public:
  48. LLPolyMorphData(const std::string& morph_name);
  49. ~LLPolyMorphData();
  50. BOOL loadBinary(LLFILE* fp, LLPolyMeshSharedData *mesh);
  51. const std::string& getName() { return mName; }
  52. public:
  53. std::string mName;
  54. // morphology
  55. U32 mNumIndices;
  56. U32* mVertexIndices;
  57. U32 mCurrentIndex;
  58. LLVector3* mCoords;
  59. LLVector3* mNormals;
  60. LLVector3* mBinormals;
  61. LLVector2* mTexCoords;
  62. F32 mTotalDistortion; // vertex distortion summed over entire morph
  63. F32 mMaxDistortion; // maximum single vertex distortion in a given morph
  64. LLVector3 mAvgDistortion; // average vertex distortion, to infer directionality of the morph
  65. LLPolyMeshSharedData* mMesh;
  66. };
  67. //-----------------------------------------------------------------------------
  68. // LLPolyVertexMask()
  69. //-----------------------------------------------------------------------------
  70. class LLPolyVertexMask
  71. {
  72. public:
  73. LLPolyVertexMask(LLPolyMorphData* morph_data);
  74. ~LLPolyVertexMask();
  75. void generateMask(U8 *maskData, S32 width, S32 height, S32 num_components, BOOL invert, LLVector4 *clothing_weights);
  76. F32* getMorphMaskWeights();
  77. protected:
  78. F32* mWeights;
  79. LLPolyMorphData *mMorphData;
  80. BOOL mWeightsGenerated;
  81. };
  82. //-----------------------------------------------------------------------------
  83. // LLPolyMorphTarget Data structs
  84. //-----------------------------------------------------------------------------
  85. struct LLPolyVolumeMorphInfo
  86. {
  87. LLPolyVolumeMorphInfo(std::string &name, LLVector3 &scale, LLVector3 &pos)
  88. : mName(name), mScale(scale), mPos(pos) {};
  89. std::string mName;
  90. LLVector3 mScale;
  91. LLVector3 mPos;
  92. };
  93. struct LLPolyVolumeMorph
  94. {
  95. LLPolyVolumeMorph(LLViewerJointCollisionVolume* volume, LLVector3 scale, LLVector3 pos)
  96. : mVolume(volume), mScale(scale), mPos(pos) {};
  97. LLViewerJointCollisionVolume* mVolume;
  98. LLVector3 mScale;
  99. LLVector3 mPos;
  100. };
  101. //-----------------------------------------------------------------------------
  102. // LLPolyMorphTargetInfo
  103. // Shared information for LLPolyMorphTargets
  104. //-----------------------------------------------------------------------------
  105. class LLPolyMorphTargetInfo : public LLViewerVisualParamInfo
  106. {
  107. friend class LLPolyMorphTarget;
  108. public:
  109. LLPolyMorphTargetInfo();
  110. /*virtual*/ ~LLPolyMorphTargetInfo() {};
  111. /*virtual*/ BOOL parseXml(LLXmlTreeNode* node);
  112. protected:
  113. std::string mMorphName;
  114. BOOL mIsClothingMorph;
  115. typedef std::vector<LLPolyVolumeMorphInfo> volume_info_list_t;
  116. volume_info_list_t mVolumeInfoList;
  117. };
  118. //-----------------------------------------------------------------------------
  119. // LLPolyMorphTarget
  120. // A set of vertex data associated with morph target.
  121. // These morph targets must be topologically consistent with a given Polymesh
  122. // (share face sets)
  123. //-----------------------------------------------------------------------------
  124. class LLPolyMorphTarget : public LLViewerVisualParam
  125. {
  126. public:
  127. LLPolyMorphTarget(LLPolyMesh *poly_mesh);
  128. ~LLPolyMorphTarget();
  129. // Special: These functions are overridden by child classes
  130. LLPolyMorphTargetInfo* getInfo() const { return (LLPolyMorphTargetInfo*)mInfo; }
  131. //   This sets mInfo and calls initialization functions
  132. BOOL setInfo(LLPolyMorphTargetInfo *info);
  133. /*virtual*/ LLViewerVisualParam* cloneParam(LLWearable* wearable) const;
  134. // LLVisualParam Virtual functions
  135. ///*virtual*/ BOOL parseData(LLXmlTreeNode* node);
  136. /*virtual*/ void apply( ESex sex );
  137. // LLViewerVisualParam Virtual functions
  138. /*virtual*/ F32 getTotalDistortion();
  139. /*virtual*/ const LLVector3& getAvgDistortion();
  140. /*virtual*/ F32 getMaxDistortion();
  141. /*virtual*/ LLVector3 getVertexDistortion(S32 index, LLPolyMesh *poly_mesh);
  142. /*virtual*/ const LLVector3* getFirstDistortion(U32 *index, LLPolyMesh **poly_mesh);
  143. /*virtual*/ const LLVector3* getNextDistortion(U32 *index, LLPolyMesh **poly_mesh);
  144. void applyMask(U8 *maskData, S32 width, S32 height, S32 num_components, BOOL invert);
  145. void addPendingMorphMask() { mNumMorphMasksPending++; }
  146. protected:
  147. LLPolyMorphData* mMorphData;
  148. LLPolyMesh* mMesh;
  149. LLPolyVertexMask * mVertMask;
  150. ESex mLastSex;
  151. // number of morph masks that haven't been generated, must be 0 before this morph is applied
  152. BOOL mNumMorphMasksPending;
  153. typedef std::vector<LLPolyVolumeMorph> volume_list_t;
  154. volume_list_t  mVolumeMorphs;
  155. };
  156. #endif // LL_LLPOLYMORPH_H