00001
00004 #ifndef _FBXSDK_SKELETON_H_
00005 #define _FBXSDK_SKELETON_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 <kaydaradef.h>
00043 #ifndef KFBX_DLL
00044 #define KFBX_DLL K_DLLIMPORT
00045 #endif
00046
00047 #include <kaydara.h>
00048
00049 #include <klib/kerror.h>
00050
00051 #include <kfbxplugins/kfbxnodeattribute.h>
00052 #include <kfbxplugins/kfbxcolor.h>
00053
00054 #include <fbxfilesdk_nsbegin.h>
00055
00056 class KFbxSdkManager;
00057
00061 class KFBX_DLL KFbxSkeleton : public KFbxNodeAttribute
00062 {
00063 KFBXOBJECT_DECLARE(KFbxSkeleton,KFbxNodeAttribute);
00064
00065 public:
00067 virtual EAttributeType GetAttributeType() const;
00068
00070 void Reset();
00071
00076
00088 typedef enum
00089 {
00090 eROOT,
00091 eLIMB,
00092 eLIMB_NODE,
00093 eEFFECTOR
00094 } ESkeletonType;
00095
00099 void SetSkeletonType(ESkeletonType pSkeletonType);
00100
00104 ESkeletonType GetSkeletonType() const;
00105
00111 bool GetSkeletonTypeIsSet() const;
00112
00116 ESkeletonType GetSkeletonTypeDefaultValue() const;
00117
00124 K_DEPRECATED bool SetLimbLength(double pLength);
00125
00131 K_DEPRECATED double GetLimbLength() const;
00132
00138 K_DEPRECATED bool GetLimbLengthIsSet() const;
00139
00143 double GetLimbLengthDefaultValue() const;
00144
00149 K_DEPRECATED bool SetLimbNodeSize(double pSize);
00150
00155 K_DEPRECATED double GetLimbNodeSize() const;
00156
00164 K_DEPRECATED bool GetLimbNodeSizeIsSet() const;
00165
00169 double GetLimbNodeSizeDefaultValue() const;
00170
00176 bool SetLimbNodeColor(const KFbxColor& pColor);
00177
00182 KFbxColor GetLimbNodeColor() const;
00183
00189 bool GetLimbNodeColorIsSet() const;
00190
00194 KFbxColor GetLimbNodeColorDefaultValue() const;
00195
00197
00198
00202 static const char* sSize;
00203 static const char* sLimbLength;
00204
00209 static const fbxDouble1 sDefaultSize;
00210 static const fbxDouble1 sDefaultLimbLength;
00211
00212
00214
00215
00216
00218
00226 KFbxTypedProperty<fbxDouble1> Size;
00227
00235 KFbxTypedProperty<fbxDouble1> LimbLength;
00236
00238
00239
00240
00241
00242
00243
00245
00246 #ifndef DOXYGEN_SHOULD_SKIP_THIS
00247
00248 public:
00249
00250
00251 virtual KFbxObject* Clone(KFbxObject* pContainer, KFbxObject::ECloneType pCloneType) const;
00252
00253 protected:
00254
00255 KFbxSkeleton(KFbxSdkManager& pManager, char const* pName);
00256 ~KFbxSkeleton();
00257
00258 virtual void Construct(const KFbxSkeleton* pFrom);
00259 virtual bool ConstructProperties(bool pForceSet);
00260 virtual void Destruct(bool pRecursive, bool pDependents);
00261
00262 void Reset( bool pResetProperties );
00263
00265 KFbxSkeleton& operator=(KFbxSkeleton const& pSkeleton);
00266
00267 virtual KString GetTypeName() const;
00268 virtual KStringList GetTypeFlags() const;
00269
00270 ESkeletonType mSkeletonType;
00271
00272 bool mLimbLengthIsSet;
00273 bool mLimbNodeSizeIsSet;
00274 bool mLimbNodeColorIsSet;
00275 bool mSkeletonTypeIsSet;
00276
00277 friend class KFbxReaderFbx;
00278 friend class KFbxWriterFbx;
00279
00280 #endif // #ifndef DOXYGEN_SHOULD_SKIP_THIS
00281
00282 };
00283
00284 typedef KFbxSkeleton* HKFbxSkeleton;
00285
00286 #include <fbxfilesdk_nsend.h>
00287
00288 #endif // #ifndef _FBXSDK_SKELETON_H_
00289
00290