hkDynamicClassNameRegistry.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_DYNAMIC_CLASS_NAME_REGISTRY_H
  9. #define HK_DYNAMIC_CLASS_NAME_REGISTRY_H
  10. #include <Common/Base/Reflection/Registry/hkClassNameRegistry.h>
  11. #include <Common/Base/Container/StringMap/hkStringMap.h>
  12. #include <Common/Base/Reflection/hkClass.h>
  13. /// The class implements the hkClassNameRegistry interfaces
  14. /// and allows dynamically change the registry.
  15. class hkDynamicClassNameRegistry : public hkClassNameRegistry
  16. {
  17. public:
  18. /// Create dynamic class name registry with specific name,
  19. /// the name is HK_NULL by default.
  20. hkDynamicClassNameRegistry(const char* name = HK_NULL) : m_name(name) {}
  21. /// Implements hkClassNameRegistry::getName()
  22. virtual const char* getName() const
  23. {
  24. return m_name;
  25. }
  26. /// Set dynamic registry name
  27. virtual void setName(const char* name)
  28. {
  29. m_name = name;
  30. }
  31. /// Implements hkClassNameRegistry::getClassByName()
  32. virtual const hkClass* getClassByName( const char* className ) const
  33. {
  34. return m_map.getWithDefault(className, HK_NULL);
  35. }
  36. /// Implements hkClassNameRegistry::getClasses()
  37. virtual void getClasses( hkArray<const hkClass*>& classes ) const
  38. {
  39. hkStringMap<const hkClass*>::Iterator iter = m_map.getIterator();
  40. while (m_map.isValid(iter))
  41. {
  42. classes.expandOne() = m_map.getValue(iter);
  43. iter = m_map.getNext(iter);
  44. }
  45. }
  46. /// Register a class possibly under a different name.
  47. /// If name is null, the class name is used.
  48. /// The name is not copied and must be valid for the lifetime
  49. /// of this object.
  50. virtual void registerClass( const hkClass* klass, const char* name = HK_NULL )
  51. {
  52. m_map.insert( name ? name : klass->getName(), klass );
  53. }
  54. /// Register a null terminated list of classes.
  55. virtual void registerList( const hkClass* const * classes)
  56. {
  57. const hkClass* const * ci = classes;
  58. while(*ci != HK_NULL)
  59. {
  60. registerClass( *ci );
  61. ++ci;
  62. }
  63. }
  64. /// Merges all entries from "mergeFrom" string map (potentially overwriting current entries).
  65. virtual void merge(const hkStringMap<const hkClass*>& mergeFromMap)
  66. {
  67. hkStringMap<const hkClass*>::Iterator iter = mergeFromMap.getIterator();
  68. while (mergeFromMap.isValid(iter))
  69. {
  70. registerClass( mergeFromMap.getValue(iter) );
  71. iter = mergeFromMap.getNext(iter);
  72. }
  73. }
  74. /// Merges all entries from "mergeFrom" class name registry (potentially overwriting current entries).
  75. virtual void merge(const hkClassNameRegistry& mergeFrom)
  76. {
  77. hkArray<const hkClass*> classes;
  78. mergeFrom.getClasses(classes);
  79. for( int i = 0; i < classes.getSize(); ++i )
  80. {
  81. registerClass( classes[i] );
  82. }
  83. }
  84. protected:
  85. const char* m_name;
  86. hkStringMap<const hkClass*> m_map;
  87. };
  88. #endif // HK_DYNAMIC_CLASS_NAME_REGISTRY_H
  89. /*
  90. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  91. * Confidential Information of Havok.  (C) Copyright 1999-2009
  92. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  93. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  94. * rights, and intellectual property rights in the Havok software remain in
  95. * Havok and/or its suppliers.
  96. * Use of this software for evaluation purposes is subject to and indicates
  97. * acceptance of the End User licence Agreement for this product. A copy of
  98. * the license is included with this software and is also available at www.havok.com/tryhavok.
  99. */