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

其他游戏

开发平台:

Visual C++

  1. /* 
  2.  * 
  3.  * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
  4.  * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
  5.  * 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.
  6.  * 
  7.  */
  8. #ifndef HK_VTABLE_CLASS_REGISTRY_H
  9. #define HK_VTABLE_CLASS_REGISTRY_H
  10. #include <Common/Base/Container/PointerMap/hkPointerMap.h>
  11. #include <Common/Base/Reflection/hkTypeInfo.h>
  12. /// Registry of vtables to hkClass instances.
  13. class hkVtableClassRegistry : public hkReferencedObject, public hkSingleton<hkVtableClassRegistry>
  14. {
  15. public:
  16. hkVtableClassRegistry() {}
  17. /// Associate vtable with the given hkClass.
  18. virtual void registerVtable( const void* vtable, const hkClass* klass )
  19. {
  20. HK_ASSERT2(0x2e231c83, vtable!=HK_NULL, "Nonvirtual classes should not be registered");
  21. m_map.insert(vtable, klass);
  22. }
  23. /// Get the class from an object instance which has a vtable.
  24. virtual const hkClass* getClassFromVirtualInstance( const void* obj ) const
  25. {
  26. return m_map.getWithDefault( *reinterpret_cast<const void*const*>(obj), HK_NULL );
  27. }
  28. /// Register each vtable from "infos" with the corresponding class from "classes".
  29. /// The list is terminated by the first null info or class.
  30. void registerList( const hkTypeInfo* const * infos, const hkClass* const * classes);
  31. /// Merges all entries from "copyFrom". (potentially overwriting local entries)
  32. void merge(const hkVtableClassRegistry& mergeFrom);
  33. /// Get array of registered classes, e.g. to iterate through them.
  34. virtual void getClasses( hkArray<const hkClass*>& classes ) const
  35. {
  36. hkPointerMap<const void*, const hkClass*>::Iterator iter = m_map.getIterator();
  37. while (m_map.isValid(iter))
  38. {
  39. classes.pushBack(m_map.getValue(iter));
  40. iter = m_map.getNext(iter);
  41. }
  42. }
  43. protected:
  44. hkPointerMap<const void*, const hkClass*> m_map;
  45. };
  46. #endif // HK_VTABLE_CLASS_REGISTRY_H
  47. /*
  48. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  49. * Confidential Information of Havok.  (C) Copyright 1999-2009
  50. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  51. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  52. * rights, and intellectual property rights in the Havok software remain in
  53. * Havok and/or its suppliers.
  54. * Use of this software for evaluation purposes is subject to and indicates
  55. * acceptance of the End User licence Agreement for this product. A copy of
  56. * the license is included with this software and is also available at www.havok.com/tryhavok.
  57. */