123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- /**
- * @file llpolyskeletaldistortion.h
- * @brief Implementation of LLPolyMesh class
- *
- * $LicenseInfo:firstyear=2001&license=viewergpl$
- *
- * Copyright (c) 2001-2009, Linden Research, Inc.
- *
- * Second Life Viewer Source Code
- * The source code in this file ("Source Code") is provided by Linden Lab
- * to you under the terms of the GNU General Public License, version 2.0
- * ("GPL"), unless you have obtained a separate licensing agreement
- * ("Other License"), formally executed by you and Linden Lab. Terms of
- * the GPL can be found in doc/GPL-license.txt in this distribution, or
- * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
- *
- * There are special exceptions to the terms and conditions of the GPL as
- * it is applied to this Source Code. View the full text of the exception
- * in the file doc/FLOSS-exception.txt in this software distribution, or
- * online at
- * http://secondlifegrid.net/programs/open_source/licensing/flossexception
- *
- * By copying, modifying or distributing this software, you acknowledge
- * that you have read and understood your obligations described above,
- * and agree to abide by those obligations.
- *
- * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
- * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
- * COMPLETENESS OR PERFORMANCE.
- * $/LicenseInfo$
- */
- #ifndef LL_LLPOLYSKELETALDISTORTION_H
- #define LL_LLPOLYSKELETALDISTORTION_H
- #include "linden_common.h"
- #include "lljoint.h"
- #include "llpreprocessor.h"
- #include "llquaternion.h"
- #include "llstl.h"
- #include "llviewervisualparam.h"
- #include "llvector2.h"
- #include "llvector3.h"
- class LLAvatarAppearance;
- //-----------------------------------------------------------------------------
- // LLPolySkeletalDeformationInfo
- // Shared information for LLPolySkeletalDeformations
- //-----------------------------------------------------------------------------
- struct LLPolySkeletalBoneInfo
- {
- LLPolySkeletalBoneInfo(const std::string& name, const LLVector3& scale,
- const LLVector3& pos, bool haspos)
- : mJointKey(LLJoint::getKey(name)),
- mScaleDeformation(scale),
- mPositionDeformation(pos),
- mHasPositionDeformation(haspos)
- {
- }
- LLVector3 mScaleDeformation;
- LLVector3 mPositionDeformation;
- U32 mJointKey;
- bool mHasPositionDeformation;
- };
- class LLPolySkeletalDistortionInfo : public LLViewerVisualParamInfo
- {
- friend class LLPolySkeletalDistortion;
- protected:
- LOG_CLASS(LLPolySkeletalDistortionInfo);
- public:
- LLPolySkeletalDistortionInfo() = default;
- LL_INLINE LLPolySkeletalDistortionInfo* asPolySkeletalDistortionInfo() override
- {
- return this;
- }
- bool parseXml(LLXmlTreeNode* node) override;
- protected:
- typedef std::vector<LLPolySkeletalBoneInfo> bone_info_list_t;
- bone_info_list_t mBoneInfoList;
- };
- //-----------------------------------------------------------------------------
- // LLPolySkeletalDeformation
- // A set of joint scale data for deforming the avatar mesh
- //-----------------------------------------------------------------------------
- class alignas(16) LLPolySkeletalDistortion : public LLViewerVisualParam
- {
- protected:
- LOG_CLASS(LLPolySkeletalDistortion);
- LLPolySkeletalDistortion(const LLPolySkeletalDistortion& other);
- public:
- LLPolySkeletalDistortion(LLAvatarAppearance* avatarp);
- LL_INLINE LLPolySkeletalDistortion* asPolySkeletalDistortion() override
- {
- return this;
- }
- // Special: these functions are overridden by child classes
- LL_INLINE LLPolySkeletalDistortionInfo* getInfo() const
- {
- return (LLPolySkeletalDistortionInfo*)mInfo;
- }
- // This sets mInfo and calls initialization functions
- bool setInfo(LLPolySkeletalDistortionInfo* info);
- LLViewerVisualParam* cloneParam(LLWearable* wearable) const override;
- // LLVisualParam Virtual function
- void apply(ESex sex) override;
- #if 0 // Unused methods
- // LLViewerVisualParam Virtual functions
- LL_INLINE F32 getTotalDistortion() override { return 0.1f; }
- LL_INLINE const LLVector4a& getAvgDistortion() override { return mDefaultVec; }
- LL_INLINE F32 getMaxDistortion() override { return 0.1f; }
- LL_INLINE LLVector4a getVertexDistortion(S32, LLPolyMesh*) override
- {
- return LLVector4a(0.001f, 0.001f, 0.001f);
- }
- LL_INLINE const LLVector4a* getFirstDistortion(U32* index,
- LLPolyMesh** pmesh) override
- {
- index = 0;
- pmesh = NULL;
- return &mDefaultVec;
- }
- LL_INLINE const LLVector4a* getNextDistortion(U32* index,
- LLPolyMesh** pmesh) override
- {
- index = 0;
- pmesh = NULL;
- return NULL;
- }
- #endif
- protected:
- LLVector4a mDefaultVec;
- // Backlink only; do not make this an LLPointer:
- LLAvatarAppearance* mAvatar;
- typedef std::map<LLJoint*, LLVector3> joint_vec_map_t;
- joint_vec_map_t mJointScales;
- joint_vec_map_t mJointOffsets;
- };
- #endif // LL_LLPOLYSKELETALDISTORTION_H
|