00001
00004 #ifndef FBXFILESDK_KFBXCHARACTER_KFBXCHARACTERPOSE_H
00005 #define FBXFILESDK_KFBXCHARACTER_KFBXCHARACTERPOSE_H
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 #include <fbxfilesdk/components/kbaselib/kaydaradef_h.h>
00043 #include <fbxfilesdk/components/kbaselib/kaydara.h>
00044
00045 #include <fbxfilesdk/kfbxplugins/kfbxobject.h>
00046
00047 #include <fbxfilesdk/components/kbaselib/klib/kstring.h>
00048
00049 #include <fbxfilesdk/kfbxmath/kfbxxmatrix.h>
00050
00051 #include <fbxfilesdk/kfbxplugins/kfbxnode.h>
00052
00053 #include <fbxfilesdk/kfbxcharacter/kfbxcharacter.h>
00054
00055 #include <fbxfilesdk/fbxfilesdk_nsbegin.h>
00056
00057 class KFbxScene;
00058 class KFbxSdkManager;
00059
00060 class KFbxCharacterPose_internal;
00061
00086 class KFBX_DLL KFbxCharacterPose : public KFbxObject
00087 {
00088 KFBXOBJECT_DECLARE(KFbxCharacterPose,KFbxObject);
00089
00090 public:
00092 void Reset();
00093
00097 KFbxNode* GetRootNode() const;
00098
00102 KFbxCharacter* GetCharacter() const;
00103
00109 bool GetOffset(ECharacterNodeId pCharacterNodeId, KFbxXMatrix& pOffset)
00110 {
00111 KFbxCharacterLink lCharacterLink;
00112
00113 if (!GetCharacter()) return false;
00114
00115 if (!GetCharacter()->GetCharacterLink(pCharacterNodeId, &lCharacterLink)) return false;
00116
00117 pOffset.SetTRS(lCharacterLink.mOffsetT, lCharacterLink.mOffsetR, lCharacterLink.mOffsetS);
00118
00119 return true;
00120 }
00121
00129 bool GetLocalPosition(ECharacterNodeId pCharacterNodeId, KFbxVector4& pLocalT, KFbxVector4& pLocalR, KFbxVector4& pLocalS)
00130 {
00131 KFbxCharacterLink lCharacterLink;
00132
00133 if (!GetCharacter()) return false;
00134
00135 if (!GetCharacter()->GetCharacterLink(pCharacterNodeId, &lCharacterLink)) return false;
00136
00137 pLocalT = lCharacterLink.mNode->GetLocalTFromDefaultTake();
00138 pLocalR = lCharacterLink.mNode->GetLocalRFromDefaultTake();
00139 pLocalS = lCharacterLink.mNode->GetLocalSFromDefaultTake();
00140
00141 return true;
00142 }
00143
00149 bool GetGlobalPosition(ECharacterNodeId pCharacterNodeId, KFbxXMatrix& pGlobalPosition)
00150 {
00151 KFbxCharacterLink lCharacterLink;
00152
00153 if (!GetCharacter()) return false;
00154
00155 if (!GetCharacter()->GetCharacterLink(pCharacterNodeId, &lCharacterLink)) return false;
00156
00157 pGlobalPosition = lCharacterLink.mNode->GetGlobalFromDefaultTake();
00158
00159 return true;
00160 }
00161
00163
00164
00165
00166
00167
00168
00170
00171 #ifndef DOXYGEN_SHOULD_SKIP_THIS
00172
00173 public:
00174
00175 virtual KFbxObject* Clone(KFbxObject* pContainer, KFbxObject::ECloneType pCloneType) const;
00176
00177 protected:
00178 KFbxCharacterPose& operator=(KFbxCharacterPose const& pCharacterPose);
00179
00180 private:
00181 virtual KString GetTypeName() const;
00182
00183 KFbxCharacterPose(KFbxSdkManager& pManager, char const* pName);
00184 ~KFbxCharacterPose();
00185
00186 virtual void Destruct(bool pRecursive, bool pDependents);
00187
00188 void CopyNode(KFbxNode* pSrcNode, KFbxNode* pDstNode);
00189 void CopyCharacter(KFbxCharacter* pSrcCharacter, KFbxCharacter* pDstCharacter, KFbxNode* pDstRootNode);
00190
00191 KFbxCharacterPose_internal* mPH;
00192
00193 public:
00194 KFbxScene* mScene;
00195
00196 private:
00197 friend class KFbxCharacterPose_internal;
00198 friend class KFbxScene;
00199 #endif // #ifndef DOXYGEN_SHOULD_SKIP_THIS
00200
00201 };
00202
00203 #include <fbxfilesdk/fbxfilesdk_nsend.h>
00204
00205 #endif // FBXFILESDK_KFBXCHARACTER_KFBXCHARACTERPOSE_H
00206