kfbxeventhandler.h

Go to the documentation of this file.
00001 
00004 #ifndef FBXFILESDK_KFBXEVENTS_KFBXEVENTHANDLER_H
00005 #define FBXFILESDK_KFBXEVENTS_KFBXEVENTHANDLER_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 // Local includes
00043 #include <fbxfilesdk/kfbxevents/kfbxevents.h>
00044 
00045 // FBX include
00046 #include <fbxfilesdk/components/kbaselib/klib/kintrusivelist.h>
00047 
00048 // FBX namespace begin
00049 #include <fbxfilesdk/fbxfilesdk_nsbegin.h>
00050 namespace kfbxevents
00051 {
00052     class KFbxListener;
00053 
00054     //-----------------------------------------------------------------
00055     class KFbxEventHandler
00056     {
00057     public:
00058         enum
00059         {
00060             eNODE_LISTENER = 0,
00061             eNODE_EMITTER,
00062             eNODE_COUNT
00063         };
00064 
00065         KFbxEventHandler(){}
00066         virtual ~KFbxEventHandler(){}
00067 
00068         // Handler handles a certain type of event
00069         virtual int GetHandlerEventType() = 0;
00070         virtual void FunctionCall(const KFbxEventBase& pEvent) = 0;
00071         virtual KFbxListener* GetListener() = 0;
00072 
00073         KFBX_LISTNODE(KFbxEventHandler, eNODE_COUNT);
00074     };
00075 
00076     //-----------------------------------------------------------------
00077     template <typename EventType, typename ListenerType>
00078     class KFbxMemberFuncEventHandler : public KFbxEventHandler
00079     {
00080     // VC6Note: There's no reason why the callback is a (const EventType*) it is obvious that it should be
00081     //           a (const EventType&) but because of a VC6 template limitation, we put  a pointer. 
00082     typedef void (ListenerType::*CBFunction)(const EventType*);
00083 
00084     public:
00085         KFbxMemberFuncEventHandler(ListenerType* pListenerInstance, CBFunction pFunc) :
00086             mFunc(pFunc),
00087             mListener(pListenerInstance){}
00088 
00089         // From KFbxEventHandler
00090         virtual int GetHandlerEventType(){ return EventType::GetStaticTypeId(); }  
00091         virtual void FunctionCall(const KFbxEventBase& pEvent){ (*mListener.*mFunc)(reinterpret_cast<const EventType*>(&pEvent)); } 
00092         virtual KFbxListener* GetListener(){ return mListener;}
00093     
00094     private:
00095         ListenerType* mListener;
00096 
00097         // The callback function
00098         CBFunction mFunc;
00099     };
00100 
00101     //-----------------------------------------------------------------
00102     template <typename EventType, typename ListenerType>
00103     class KFbxConstMemberFuncEventHandler : public KFbxEventHandler
00104     {
00105     // VC6Note: There's no reason why the callback is a (const EventType*) it is obvious that it should be
00106     //           a (const EventType&) but because of a VC6 template limitation, we put  a pointer. 
00107     typedef void (ListenerType::*CBFunction)(const EventType*)const;
00108 
00109     public:
00110         KFbxConstMemberFuncEventHandler(ListenerType* pListenerInstance, CBFunction pFunc) :
00111             mFunc(pFunc),
00112             mListener(pListenerInstance){}
00113 
00114         // From KFbxEventHandler
00115         virtual int GetHandlerEventType(){ return EventType::GetStaticTypeId(); }    
00116         virtual void FunctionCall(const KFbxEventBase& pEvent){ (*mListener.*mFunc)(reinterpret_cast<const EventType*>(&pEvent)); }
00117         virtual KFbxListener* GetListener(){ return mListener;}
00118 
00119     private:
00120         ListenerType* mListener;
00121 
00122         // The callback function
00123         CBFunction mFunc;
00124     };
00125 
00126     //-----------------------------------------------------------------
00127     template <typename EventType>
00128     class KFbxFuncEventHandler : public KFbxEventHandler
00129     {
00130     // VC6Note: There's no reason why the callback is a (const EventType*,KFbxListener*) it is obvious that it should be
00131     //           a (const EventType&,KFbxListener*) but because of a VC6 template limitation, we put  a pointer.
00132     typedef void (*CBFunction)(const EventType*,KFbxListener*);
00133 
00134     public:
00135         KFbxFuncEventHandler(KFbxListener* pListener, CBFunction pFunc) :
00136             mFunc(pFunc),
00137             mListener(pListener){}
00138 
00139         // From KFbxEventHandler
00140         virtual int GetHandlerEventType(){ return EventType::GetStaticTypeId(); }   
00141         virtual void FunctionCall(const KFbxEventBase& pEvent){ (*mFunc)(reinterpret_cast<const EventType*>(&pEvent),mListener); }
00142         virtual KFbxListener* GetListener(){ return mListener; }
00143 
00144     private:
00145         KFbxListener* mListener;
00146 
00147         // The callback function
00148         CBFunction mFunc;
00149     };
00150 }
00151 // FBX namespace end
00152 #include <fbxfilesdk/fbxfilesdk_nsend.h>
00153 
00154 #endif // FBXFILESDK_KFBXEVENTS_KFBXEVENTHANDLER_H
00155