00001
00004 #ifndef FBXFILESDK_KFBXPLUGINS_KFBXNODEATTRIBUTE_H
00005 #define FBXFILESDK_KFBXPLUGINS_KFBXNODEATTRIBUTE_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 #include <fbxfilesdk/fbxfilesdk_def.h>
00042
00043 #include <fbxfilesdk/components/kbaselib/klib/karrayul.h>
00044 #include <fbxfilesdk/components/kbaselib/klib/kstringlist.h>
00045 #include <fbxfilesdk/kfbxplugins/kfbxobject.h>
00046
00047 #include <fbxfilesdk/fbxfilesdk_nsbegin.h>
00048
00049 class KFbxNode;
00050 class KFbxSdkManager;
00051
00057 class KFBX_DLL KFbxNodeAttribute : public KFbxObject
00058 {
00059 KFBXOBJECT_DECLARE(KFbxNodeAttribute, KFbxObject);
00060
00061 public:
00063 static const char* sColor;
00064
00066 static const fbxDouble3 sDefaultColor;
00067
00072 KFbxTypedProperty<fbxDouble3> Color;
00073
00096 typedef enum
00097 {
00098 eUNIDENTIFIED,
00099 eNULL,
00100 eMARKER,
00101 eSKELETON,
00102 eMESH,
00103 eNURB,
00104 ePATCH,
00105 eCAMERA,
00106 eCAMERA_STEREO,
00107 eCAMERA_SWITCHER,
00108 eLIGHT,
00109 eOPTICAL_REFERENCE,
00110 eOPTICAL_MARKER,
00111 eNURBS_CURVE,
00112 eTRIM_NURBS_SURFACE,
00113 eBOUNDARY,
00114 eNURBS_SURFACE,
00115 eSHAPE,
00116 eLODGROUP,
00117 eSUBDIV
00118 } EAttributeType;
00119
00123 virtual EAttributeType GetAttributeType() const;
00124
00128 int GetNodeCount() const;
00129
00134 KFbxNode* GetNode(int pIndex=0) const;
00135
00136 virtual KFbxObject* Clone(KFbxObject* pContainer, KFbxObject::ECloneType pCloneType) const;
00137
00139
00140
00141
00142
00143
00144
00146 #ifndef DOXYGEN_SHOULD_SKIP_THIS
00147 protected:
00148 KFbxNodeAttribute(KFbxSdkManager& pManager, char const* pName);
00149 virtual bool ConstructProperties(bool pForceSet);
00150
00154 virtual KString GetTypeName() const;
00155
00156 friend class KFbxNode;
00157 friend class KFbxScene;
00158 #endif // #ifndef DOXYGEN_SHOULD_SKIP_THIS
00159 };
00160
00161 typedef KFbxNodeAttribute* HKFbxNodeAttribute;
00162
00163 #include <fbxfilesdk/fbxfilesdk_nsend.h>
00164
00165 #endif // FBXFILESDK_KFBXPLUGINS_KFBXNODEATTRIBUTE_H
00166