hctFilterClassRegistry.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:3k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /* 
  2.  * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
  3.  * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
  4.  * Level 2 and Level 3 source code contains trade secrets of Havok. Havok Software (C) Copyright 1999-2009 Telekinesys Research Limited t/a Havok. All Rights Reserved. Use of this software is subject to the terms of an end user license agreement.
  5.  * 
  6.  */
  7. #ifndef HAVOK_FILTER_REGISTRY__H
  8. #define HAVOK_FILTER_REGISTRY__H
  9. class hkTypeInfo;
  10. class hkClass;
  11. class hkVtableClassRegistry;
  12. class hkTypeInfoRegistry;
  13. class hkClassNameRegistry;
  14. /// An object of this class is passed to each filter DLL - each filter DLL registers the classes its filters create. 
  15. /// This is necessary since objects created in a particular DLL will have the VTable corresponding to that DLL - other DLLs need to be aware of the address
  16. /// of those VTables in order to recognize the class of objects.
  17. /// An hctFilterClassRegistry stores an hkVtableClassRegistry, an hkClassNameRegistry and an hkTypeInfoRegistry.
  18. class hctFilterClassRegistry
  19. {
  20. public:
  21. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR(HK_MEMORY_CLASS_SERIALIZE, hctFilterClassRegistry);
  22. /// Constructor
  23. hctFilterClassRegistry();
  24. /// Destructor
  25. ~hctFilterClassRegistry();
  26. /// Returns a const reference to the hkVtableClassRegistry object
  27. const hkVtableClassRegistry& getVtableRegistry() const;
  28. /// Returns a non-const (read/write) reference to the hkVtableClassRegistry object
  29. hkVtableClassRegistry& getVtableRegistry();
  30. /// Returns a const reference to the hkTypeInfoRegistry object
  31. const hkTypeInfoRegistry& getTypeInfoRegistry() const;
  32. /// Returns a non-const (read/write) reference to the hkTypeInfoRegistry object
  33. hkTypeInfoRegistry& getTypeInfoRegistry();
  34. /// Returns a const reference to the hkClassNameRegistry object
  35. const hkClassNameRegistry& getClassNameRegistry() const; 
  36. /// Returns a non-const (read/write) reference to the hkClassNameRegistry object
  37. hkClassNameRegistry& getClassNameRegistry(); 
  38. /// Given an instance of an object (NOTE: The object has to have a Vtable) it returns its class. 
  39. const hkClass* getClassFromVirtualInstance(void*) const;
  40. /// Registers a class
  41. void registerClass(const hkTypeInfo* ti, const hkClass* ci);
  42. /// Registers an array of classes
  43. void registerClasses(const hkTypeInfo* const * tis, const hkClass* const * cis);
  44. /// Merges another hctFilterClassRegistry object into this one
  45. void merge ( const hctFilterClassRegistry& copyFrom );
  46. struct Implementation;
  47. protected:
  48. Implementation* m_impl;
  49. };
  50. #endif // HAVOK_FILTER_REGISTRY__H
  51. /*
  52. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  53. * Confidential Information of Havok.  (C) Copyright 1999-2009
  54. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  55. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  56. * rights, and intellectual property rights in the Havok software remain in
  57. * Havok and/or its suppliers.
  58. * Use of this software for evaluation purposes is subject to and indicates
  59. * acceptance of the End User licence Agreement for this product. A copy of
  60. * the license is included with this software and is also available at www.havok.com/tryhavok.
  61. */