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

其他游戏

开发平台:

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_SERIALIZE_LOADED_OBJECT_REGISTRY_H
  9. #define HK_SERIALIZE_LOADED_OBJECT_REGISTRY_H
  10. #include <Common/Base/Container/StringMap/hkStringMap.h>
  11. #include <Common/Base/Reflection/hkTypeInfo.h>
  12. /// Helper class to initialize object vtables.
  13. /// When objects are loaded we call placement new on them
  14. /// (with the hkFinishLoadedObjectFlag) to "finish" the object
  15. /// and make it ready to use. This class maintains a map of
  16. /// class names to finishing functions.
  17. class hkTypeInfoRegistry : public hkReferencedObject, public hkSingleton<hkTypeInfoRegistry>
  18. {
  19. public:
  20. hkTypeInfoRegistry() {}
  21. /// Add a hook for loaded objects of type "className".
  22. /// The name is not copied and must be valid for the lifetime
  23. /// of this object.
  24. virtual void registerTypeInfo( const hkTypeInfo* info )
  25. {
  26. m_map.insert( info->getTypeName(), info );
  27. }
  28. /// Perform the final steps to finish loading an object.
  29. /// Generally this will involve initializing a vtable and/or
  30. /// setting up cached/computed values.
  31. virtual const hkTypeInfo* finishLoadedObject( void* obj, const char* className ) const
  32. {
  33. if( const hkTypeInfo* t = m_map.getWithDefault( className, HK_NULL ) )
  34. {
  35. if( hkTypeInfo::FinishLoadedObjectFunction f = t->getFinishFunction() )
  36. {
  37. (*f)(obj, 1);
  38. }
  39. return t;
  40. }
  41. return HK_NULL;
  42. }
  43. /// Perform the final step cleaning a loaded object before the memory is deallocated.
  44. /// This function should be used only to clean non-virtual objects. Use removeReference()
  45. /// to clean virtual objects.
  46. /// Generally this will involve calling the object destructor.
  47. /// 
  48. virtual const hkTypeInfo* cleanupLoadedObject( void* obj, const char* className ) const
  49. {
  50. const hkTypeInfo* t = m_map.getWithDefault( className, HK_NULL );
  51. if( t )
  52. {
  53. if( hkTypeInfo::CleanupLoadedObjectFunction f = t->getCleanupFunction() )
  54. {
  55. (*f)(obj);
  56. }
  57. }
  58. else
  59. {
  60. HK_WARN(0x4e34ea5f, "Class " << className << " not found in hkCleanupLoadedObjectRegistry. Has it been registered?" );
  61. }
  62. return t;
  63. }
  64. /// Register a null terminated list of type infos.
  65. void registerList( const hkTypeInfo* const * infos)
  66. {
  67. const hkTypeInfo* const * ti = infos;
  68. while(*ti != HK_NULL)
  69. {
  70. registerTypeInfo( *ti );
  71. ++ti;
  72. }
  73. }
  74. /// Merges all entries from "mergeFrom" (potentially overwriting curren entries).
  75. virtual void merge(const hkTypeInfoRegistry& mergeFrom) 
  76. {
  77. hkStringMap<const hkClass*>::Iterator iter = mergeFrom.m_map.getIterator();
  78. while (mergeFrom.m_map.isValid(iter))
  79. {
  80. m_map.insert( mergeFrom.m_map.getKey(iter), mergeFrom.m_map.getValue(iter) );
  81. iter = mergeFrom.m_map.getNext(iter);
  82. }
  83. }
  84. /// Get registered type info by name.
  85. virtual const hkTypeInfo* getTypeInfo( const char* typeName ) const
  86. {
  87. return m_map.getWithDefault(typeName, HK_NULL);
  88. }
  89. private:
  90. hkStringMap<const hkTypeInfo*> m_map;
  91. };
  92. #endif // HK_SERIALIZE_LOADED_OBJECT_REGISTRY_H
  93. /*
  94. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  95. * Confidential Information of Havok.  (C) Copyright 1999-2009
  96. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  97. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  98. * rights, and intellectual property rights in the Havok software remain in
  99. * Havok and/or its suppliers.
  100. * Use of this software for evaluation purposes is subject to and indicates
  101. * acceptance of the End User licence Agreement for this product. A copy of
  102. * the license is included with this software and is also available at www.havok.com/tryhavok.
  103. */