kfbxplugin.h

Go to the documentation of this file.
00001 
00004 #ifndef FBXFILESDK_KFBXMODULES_KFBXPLUGIN_H
00005 #define FBXFILESDK_KFBXMODULES_KFBXPLUGIN_H
00006 
00007 /**************************************************************************************
00008 
00009  Copyright (C) 2001 - 2009 Autodesk, Inc. and/or its licensors.
00010  All Rights Reserved.
00011 
00012  The coded instructions, statements, computer programs, and/or related material 
00013  (collectively the "Data") in these files contain unpublished information 
00014  proprietary to Autodesk, Inc. and/or its licensors, which is protected by 
00015  Canada and United States of America federal copyright law and by international 
00016  treaties. 
00017  
00018  The Data may not be disclosed or distributed to third parties, in whole or in
00019  part, without the prior written consent of Autodesk, Inc. ("Autodesk").
00020 
00021  THE DATA IS PROVIDED "AS IS" AND WITHOUT WARRANTY.
00022  ALL WARRANTIES ARE EXPRESSLY EXCLUDED AND DISCLAIMED. AUTODESK MAKES NO
00023  WARRANTY OF ANY KIND WITH RESPECT TO THE DATA, EXPRESS, IMPLIED OR ARISING
00024  BY CUSTOM OR TRADE USAGE, AND DISCLAIMS ANY IMPLIED WARRANTIES OF TITLE, 
00025  NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE OR USE. 
00026  WITHOUT LIMITING THE FOREGOING, AUTODESK DOES NOT WARRANT THAT THE OPERATION
00027  OF THE DATA WILL BE UNINTERRUPTED OR ERROR FREE. 
00028  
00029  IN NO EVENT SHALL AUTODESK, ITS AFFILIATES, PARENT COMPANIES, LICENSORS
00030  OR SUPPLIERS ("AUTODESK GROUP") BE LIABLE FOR ANY LOSSES, DAMAGES OR EXPENSES
00031  OF ANY KIND (INCLUDING WITHOUT LIMITATION PUNITIVE OR MULTIPLE DAMAGES OR OTHER
00032  SPECIAL, DIRECT, INDIRECT, EXEMPLARY, INCIDENTAL, LOSS OF PROFITS, REVENUE
00033  OR DATA, COST OF COVER OR CONSEQUENTIAL LOSSES OR DAMAGES OF ANY KIND),
00034  HOWEVER CAUSED, AND REGARDLESS OF THE THEORY OF LIABILITY, WHETHER DERIVED
00035  FROM CONTRACT, TORT (INCLUDING, BUT NOT LIMITED TO, NEGLIGENCE), OR OTHERWISE,
00036  ARISING OUT OF OR RELATING TO THE DATA OR ITS USE OR ANY OTHER PERFORMANCE,
00037  WHETHER OR NOT AUTODESK HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS
00038  OR DAMAGE. 
00039 
00040 **************************************************************************************/
00041 #include <fbxfilesdk/fbxfilesdk_def.h>
00042 
00043 // FBX includes
00044 #include <fbxfilesdk/kfbxplugins/kfbxobject.h>
00045 
00046 #include <fbxfilesdk/components/kbaselib/klib/kstring.h>
00047 #include <fbxfilesdk/components/kbaselib/klib/kintrusivelist.h>
00048 #include <fbxfilesdk/components/kbaselib/object/klibrary.h>
00049 
00050 #include <fbxfilesdk/kfbxevents/kfbxemitter.h>
00051 #include <fbxfilesdk/kfbxevents/kfbxlistener.h>
00052 
00053 // FBX begin namespace
00054 #include <fbxfilesdk/fbxfilesdk_nsbegin.h>
00055 
00056 // Forward declaration
00057 class KFbxSdkManager;
00058 
00059     // Forward declaration
00060     class KFbxLoadingStrategy;
00061     class KFbxPluginContainer;
00062 
00063 #define KFBXPLUGIN_DECLARE(Plugin)\
00064     KFBXNEW_DECLARE_FRIEND\
00065     public:\
00066         static Plugin* Create( const KFbxPluginDefinition& pDefinition, kLibHandle pLibHandle );\
00067         void Destroy();
00068 
00069 #define KFBXPLUGIN_IMPLEMENT(Plugin)\
00070     Plugin* Plugin::Create( const KFbxPluginDefinition& pDefinition, kLibHandle pLibHandle )\
00071     {\
00072         return FbxSdkNew< Plugin >( pDefinition, pLibHandle );\
00073     }\
00074     void Plugin::Destroy()\
00075     {\
00076         FbxSdkDelete(this);\
00077     }
00078 
00079 
00085     struct KFBX_DLL KFbxPluginDefinition
00086     {
00087         KFbxPluginDefinition():mName("Unknown Name"),mVersion("Unknown Version"){}
00088         KString mName;
00089         KString mVersion;
00090     };
00091 
00097     struct KFBX_DLL KFbxPluginData
00098     {
00099         KFbxPluginData() : mQueryEmitter(0), mSDKManager(0), mPluginContainer(0) {}
00100         explicit KFbxPluginData(const KFbxPluginData& r) : mQueryEmitter(r.mQueryEmitter), mSDKManager(r.mSDKManager), mPluginContainer(r.mPluginContainer){}
00101         kfbxevents::KFbxEmitter* mQueryEmitter;  // (Optional) The plug-in can listen to this query emitter
00102         KFbxSdkManager* mSDKManager;             // (Optional) SDK manager to which the plug-in can register custom types
00103         KFbxPluginContainer* mPluginContainer;   // (Optional) Container which will have the ownership of the plug-in
00104     };
00105 
00111     class KFBX_DLL KFbxPlugin : public kfbxevents::KFbxListener
00112     {
00113         KFBX_LISTNODE(KFbxPlugin,1);
00114 
00115     public:
00120 
00122         virtual ~KFbxPlugin();
00123 
00127         inline const KFbxPluginDefinition& GetDefinition()const;
00128 
00129         virtual void Destroy() = 0;
00130 
00131         inline KFbxObject& GetPluginSettings() { return *(mPluginSettings.Get()); }
00132 
00133         inline const KFbxObject& GetPluginSettings() const { return *(mPluginSettings.Get()); }
00134 
00136 
00137     protected:
00145         explicit KFbxPlugin(const KFbxPluginDefinition& pDefinition, kLibHandle pLibHandle);
00146         
00150         inline KFbxPluginData& GetData();
00151 
00155         inline const KFbxPluginData& GetData()const;
00156 
00157     private:
00158         bool mInitialized;
00159         KFbxPluginData mData;
00160         KFbxPluginDefinition mDefinition;
00161         kLibHandle mLibraryHandle;
00162 
00163     public:
00168 
00172         virtual bool SpecificInitialize() = 0;
00173 
00177         virtual bool SpecificTerminate() = 0;
00179 
00180         virtual void WriteBegin(KFbxScene& pScene){}
00181         virtual void WriteParameters(KFbxObject& pParams){}
00182         virtual void WriteEnd(KFbxScene& pScene){}
00183         virtual void ReadBegin(KFbxScene& pScene){}
00184         virtual void ReadParameters(KFbxObject& pParams){}
00185         virtual void ReadEnd(KFbxScene& pScene){}
00186 
00191         template <typename EventType,typename ListernerType> inline KFbxEventHandler* Bind(void (ListernerType::*pFunc)(const EventType*))
00192         {
00193             return KFbxListener::Bind<EventType,ListernerType>(*(GetData().mQueryEmitter), pFunc );
00194         }
00195 
00199         kLibHandle GetLibraryHandle();
00200 
00201     private:
00203         //
00204         //  WARNING!
00205         //
00206         //  Anything beyond these lines may not be documented accurately and is 
00207         //  subject to change without notice.
00208         //
00210         #ifndef DOXYGEN_SHOULD_SKIP_THIS
00211 
00212         friend class KFbxLoadingStrategy;
00213         bool Initialize(const KFbxPluginData& pData);
00214         bool Terminate();
00215 
00216         KFBXObjectScopedPtr<KFbxObject> mPluginSettings;
00217 
00218         #endif
00219     };
00220 
00222     inline const KFbxPluginDefinition& KFbxPlugin::GetDefinition()const{ return mDefinition; }
00224     inline KFbxPluginData& KFbxPlugin::GetData(){ return mData; }
00226     inline const KFbxPluginData& KFbxPlugin::GetData()const{ return mData; }
00227 
00228 // FBX end namespace
00229 #include <fbxfilesdk/fbxfilesdk_nsend.h>
00230 
00231 #endif // FBXFILESDK_KFBXMODULES_KFBXPLUGIN_H