00001
00004 #ifndef _FBXSDK_VERTEX_CACHE_DEFORMER_H_
00005 #define _FBXSDK_VERTEX_CACHE_DEFORMER_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 #include <kfbxplugins/kfbxdeformer.h>
00049 #include <kfbxplugins/kfbxcache.h>
00050
00051 #include <fbxfilesdk_nsbegin.h>
00052
00057 class KFBX_DLL KFbxVertexCacheDeformer : public KFbxDeformer
00058 {
00059 KFBXOBJECT_DECLARE(KFbxVertexCacheDeformer,KFbxDeformer);
00060
00061 public:
00062
00066 void SetCache( KFbxCache* pCache );
00067
00071 KFbxCache* GetCache() const;
00072
00076 void SetCacheChannel( const char* pName );
00077
00081 KString GetCacheChannel() const;
00082
00086 void SetActive( bool pValue );
00087
00091 bool IsActive() const;
00092
00096 virtual EDeformerType GetDeformerType() const { return KFbxDeformer::eVERTEX_CACHE; }
00097
00099 KFbxVertexCacheDeformer& operator = (KFbxVertexCacheDeformer const& pDeformer);
00100
00101 protected:
00106 KFbxTypedProperty<fbxBool1> Active;
00107 KFbxTypedProperty<fbxString> Channel;
00109
00110
00112
00113
00114
00115
00116
00117
00119
00120 #ifndef DOXYGEN_SHOULD_SKIP_THIS
00121
00122 public:
00123 static const char* ChannelPropertyName;
00124 static const char* ActivePropertyName;
00125
00126
00127
00128 virtual KFbxObject* Clone(KFbxObject* pContainer, KFbxObject::ECloneType pCloneType) const;
00129
00130 protected:
00131
00132 KFbxVertexCacheDeformer(KFbxSdkManager& pManager, char const* pName);
00133 virtual ~KFbxVertexCacheDeformer();
00134
00135 virtual bool ConstructProperties(bool pForceSet);
00136 virtual void Destruct(bool pRecursive, bool pDependents);
00137
00138 virtual KString GetTypeName() const;
00139 virtual KStringList GetTypeFlags() const;
00140
00141 friend class KFbxReaderFbx;
00142 friend class KFbxReaderFbx6;
00143 friend class KFbxWriterFbx;
00144 friend class KFbxWriterFbx6;
00145
00146 private:
00147 void ClearCacheConnections();
00148
00149 #endif // #ifndef DOXYGEN_SHOULD_SKIP_THIS
00150
00151 };
00152
00153 #include <fbxfilesdk_nsend.h>
00154
00155 #endif // _FBXSDK_VERTEX_CACHE_DEFORMER_H_