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/components/kbaselib/kaydaradef_h.h>
00042 // FBX includes
00043 #include <fbxfilesdk/kfbxplugins/kfbxobject.h>
00044 
00045 #include <fbxfilesdk/components/kbaselib/klib/kstring.h>
00046 #include <fbxfilesdk/components/kbaselib/klib/kintrusivelist.h>
00047 #include <fbxfilesdk/components/kbaselib/object/klibrary.h>
00048 
00049 #include <fbxfilesdk/kfbxevents/kfbxemitter.h>
00050 #include <fbxfilesdk/kfbxevents/kfbxlistener.h>
00051 
00052 // FBX begin namespace
00053 #include <fbxfilesdk/fbxfilesdk_nsbegin.h>
00054 
00055 // Forward declaration
00056 class KFbxSdkManager;
00057 
00058     // Forward declaration
00059     class KFbxLoadingStrategy;
00060     class KFbxPluginContainer;
00061 
00062 #define KFBXPLUGIN_DECLARE(Plugin)\
00063     public:\
00064         static Plugin* Create( const KFbxPluginDefinition& pDefinition, kLibHandle pLibHandle );\
00065         void Destroy();
00066 
00067 #define KFBXPLUGIN_IMPLEMENT(Plugin)\
00068     Plugin* Plugin::Create( const KFbxPluginDefinition& pDefinition, kLibHandle pLibHandle )\
00069     {\
00070         return new Plugin( pDefinition, pLibHandle );\
00071     }\
00072     void Plugin::Destroy()\
00073     {\
00074         delete this;\
00075     }
00076 
00077 
00083     struct KFBX_DLL KFbxPluginDefinition
00084     {
00085         KFbxPluginDefinition():mName("Unknown Name"),mVersion("Unknown Version"){}
00086         KString mName;
00087         KString mVersion;
00088     };
00089 
00095     struct KFBX_DLL KFbxPluginData
00096     {
00097         KFbxPluginData():mQueryEmitter(0),mSDKManager(0),mPluginContainer(0){}
00098         explicit                    KFbxPluginData(const KFbxPluginData& r):mQueryEmitter(r.mQueryEmitter),mSDKManager(r.mSDKManager),mPluginContainer(r.mPluginContainer){}
00099         KFbxSdkManager*             mSDKManager;             // (Optional) SDK manager to which the plug-in can register custom types
00100         KFbxPluginContainer*        mPluginContainer;   // (Optional) Container which will have the ownership of the plug-in
00101         kfbxevents::KFbxEmitter*    mQueryEmitter;  // (Optional) The plug-in can listen to this query emitter
00102     };
00103 
00109     class KFBX_DLL KFbxPlugin : public kfbxevents::KFbxListener
00110     {
00111         KFBX_LISTNODE(KFbxPlugin,1);
00112 
00113     public:
00118 
00122         inline const KFbxPluginDefinition& GetDefinition()const;
00123 
00124         virtual void Destroy() = 0;
00125 
00126         inline KFbxObject& GetPluginSettings() { return *(mPluginSettings.Get()); }
00127 
00128         inline const KFbxObject& GetPluginSettings() const { return *(mPluginSettings.Get()); }
00129 
00131 
00132     protected:
00140         explicit KFbxPlugin(const KFbxPluginDefinition& pDefinition, kLibHandle pLibHandle);
00141         
00145         inline KFbxPluginData& GetData();
00146 
00150         inline const KFbxPluginData& GetData()const;
00151 
00152     private:
00153         bool mInitialized;
00154         KFbxPluginData mData;
00155         KFbxPluginDefinition mDefinition;
00156         kLibHandle mLibraryHandle;
00157 
00158     public:
00163 
00167         virtual bool SpecificInitialize() = 0;
00168 
00172         virtual bool SpecificTerminate() = 0;
00174 
00175         virtual void WriteBegin(KFbxScene& pScene){}
00176         virtual void WriteParameters(KFbxObject& pParams){}
00177         virtual void WriteEnd(KFbxScene& pScene){}
00178         virtual void ReadBegin(KFbxScene& pScene){}
00179         virtual void ReadParameters(KFbxObject& pParams){}
00180         virtual void ReadEnd(KFbxScene& pScene){}
00181 
00186         template <typename EventType,typename ListernerType> inline KFbxEventHandler* Bind(void (ListernerType::*pFunc)(const EventType*))
00187         {
00188             return KFbxListener::Bind<EventType,ListernerType>(*(GetData().mQueryEmitter), pFunc );
00189         }
00190 
00194         kLibHandle GetLibraryHandle();
00195 
00196     private:
00198         //
00199         //  WARNING!
00200         //
00201         //  Anything beyond these lines may not be documented accurately and is 
00202         //  subject to change without notice.
00203         //
00205         #ifndef DOXYGEN_SHOULD_SKIP_THIS
00206 
00207         friend class KFbxLoadingStrategy;
00208         bool Initialize(const KFbxPluginData& pData);
00209         bool Terminate();
00210 
00211         KFBXObjectScopedPtr<KFbxObject> mPluginSettings;
00212 
00213         #endif
00214     };
00215 
00217     inline const KFbxPluginDefinition& KFbxPlugin::GetDefinition()const{ return mDefinition; }
00219     inline KFbxPluginData& KFbxPlugin::GetData(){ return mData; }
00221     inline const KFbxPluginData& KFbxPlugin::GetData()const{ return mData; }
00222 
00223 // FBX end namespace
00224 #include <fbxfilesdk/fbxfilesdk_nsend.h>
00225 
00226 #endif // FBXFILESDK_KFBXMODULES_KFBXPLUGIN_H