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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llviewervisualparam.h
  3.  * @brief viewer side visual params (with data file parsing)
  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_LLViewerVisualParam_H
  33. #define LL_LLViewerVisualParam_H
  34. #include "v3math.h"
  35. #include "llstring.h"
  36. #include "llvisualparam.h"
  37. class LLWearable;
  38. //-----------------------------------------------------------------------------
  39. // LLViewerVisualParamInfo
  40. //-----------------------------------------------------------------------------
  41. class LLViewerVisualParamInfo : public LLVisualParamInfo
  42. {
  43. friend class LLViewerVisualParam;
  44. public:
  45. LLViewerVisualParamInfo();
  46. /*virtual*/ ~LLViewerVisualParamInfo();
  47. /*virtual*/ BOOL parseXml(LLXmlTreeNode* node);
  48. /*virtual*/ void toStream(std::ostream &out);
  49. protected:
  50. S32 mWearableType;
  51. BOOL mCrossWearable;
  52. std::string mEditGroup;
  53. F32 mCamDist;
  54. F32 mCamAngle; // degrees
  55. F32 mCamElevation;
  56. std::string mCamTargetName;
  57. F32 mEditGroupDisplayOrder;
  58. BOOL mShowSimple; // show edit controls when in "simple ui" mode?
  59. F32 mSimpleMin; // when in simple UI, apply this minimum, range 0.f to 100.f
  60. F32 mSimpleMax; // when in simple UI, apply this maximum, range 0.f to 100.f
  61. };
  62. //-----------------------------------------------------------------------------
  63. // LLViewerVisualParam
  64. // VIRTUAL CLASS
  65. // a viewer side interface class for a generalized parametric modification of the avatar mesh
  66. //-----------------------------------------------------------------------------
  67. class LLViewerVisualParam : public LLVisualParam
  68. {
  69. public:
  70. LLViewerVisualParam();
  71. /*virtual*/ ~LLViewerVisualParam(){};
  72. // Special: These functions are overridden by child classes
  73. LLViewerVisualParamInfo  *getInfo() const { return (LLViewerVisualParamInfo*)mInfo; };
  74. //   This sets mInfo and calls initialization functions
  75. BOOL setInfo(LLViewerVisualParamInfo *info);
  76. virtual LLViewerVisualParam* cloneParam(LLWearable* wearable) const = 0;
  77. // LLVisualParam Virtual functions
  78. ///*virtual*/ BOOL parseData(LLXmlTreeNode* node);
  79. // New Virtual functions
  80. virtual F32 getTotalDistortion() = 0;
  81. virtual const LLVector3& getAvgDistortion() = 0;
  82. virtual F32 getMaxDistortion() = 0;
  83. virtual LLVector3 getVertexDistortion(S32 index, LLPolyMesh *mesh) = 0;
  84. virtual const LLVector3* getFirstDistortion(U32 *index, LLPolyMesh **mesh) = 0;
  85. virtual const LLVector3* getNextDistortion(U32 *index, LLPolyMesh **mesh) = 0;
  86. // interface methods
  87. F32 getDisplayOrder() const { return getInfo()->mEditGroupDisplayOrder; }
  88. S32 getWearableType() const { return getInfo()->mWearableType; }
  89. const std::string& getEditGroup() const { return getInfo()->mEditGroup; }
  90. F32 getCameraDistance() const { return getInfo()->mCamDist; } 
  91. F32 getCameraAngle() const { return getInfo()->mCamAngle; }  // degrees
  92. F32 getCameraElevation() const { return getInfo()->mCamElevation; } 
  93. const std::string& getCameraTargetName() const { return getInfo()->mCamTargetName; }
  94. BOOL getShowSimple() const { return getInfo()->mShowSimple; }
  95. F32 getSimpleMin() const { return getInfo()->mSimpleMin; }
  96. F32 getSimpleMax() const { return getInfo()->mSimpleMax; }
  97. BOOL getCrossWearable() const  { return getInfo()->mCrossWearable; }
  98. };
  99. #endif // LL_LLViewerVisualParam_H