hkRootLevelContainer.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_ROOT_CONTAINER_H
  9. #define HK_ROOT_CONTAINER_H
  10. #include <Common/Base/Reflection/hkClass.h>
  11. extern const class hkClass hkRootLevelContainerClass;
  12. extern const class hkClass hkRootLevelContainerNamedVariantClass;
  13. /// This is the root level class exported by our tools.
  14. /// It contains an array of Variants and associated names.
  15. class hkRootLevelContainer
  16. {
  17. public:
  18. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR(HK_MEMORY_CLASS_SERIALIZE, hkRootLevelContainer);
  19. HK_DECLARE_REFLECTION();
  20. public:
  21. /// A variant with a name string.
  22. /// This class also redundantly stores the class name so that you can identify
  23. /// the type even if this object comes from a packfile without metadata (i.e. with
  24. /// null m_variant.m_class)
  25. class NamedVariant
  26. {
  27. public:
  28. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_SERIALIZE, hkRootLevelContainer::NamedVariant );
  29. HK_DECLARE_REFLECTION();
  30. NamedVariant();
  31. NamedVariant(const char* name, void* object, const hkClass* klass);
  32. NamedVariant(const char* name, const hkVariant& v);
  33. inline void set(const char* name, void* object, const hkClass* klass)
  34. {
  35. m_name = name;
  36. m_variant.m_object = object;
  37. m_variant.m_class = klass;
  38. m_className = m_variant.m_class ? m_variant.m_class->getName() : HK_NULL;
  39. }
  40. inline void set(const char* name, const hkVariant& v)
  41. {
  42. m_name = name;
  43. m_variant = v;
  44. m_className = m_variant.m_class ? m_variant.m_class->getName() : HK_NULL;
  45. }
  46. inline const char* getTypeName() const
  47. {
  48. return  m_variant.m_class ? m_variant.m_class->getName() : m_className;
  49. }
  50. inline const char* getName() const { return m_name; }
  51. inline void* getObject() const { return m_variant.m_object; }
  52. inline const hkClass* getClass() const { return m_variant.m_class; }
  53. inline const hkVariant& getVariant() const { return m_variant; }
  54. private:
  55. const char* m_name;
  56. const char* m_className;
  57. hkVariant m_variant;
  58. };
  59. /// Iterates over the objects held in the container returning a pointer
  60. /// to the first object after prevObject, with a type corresponding to 'typeName'.
  61. /// If prevObject is null then the search begins from the start of the container.
  62. void* findObjectByType( const char* typeName, const void* prevObject = HK_NULL ) const;
  63. /// Iterates over the objects held in the container returning a pointer
  64. /// to the first object after prevObject, with a name corresponding to 'objectName'.
  65. /// If prevObject is null then the search begins from the start of the container.
  66. void* findObjectByName( const char* objectName, const void* prevObject = HK_NULL ) const;
  67. public:
  68. /// An array of NamedVariants.
  69. class NamedVariant* m_namedVariants;
  70. /// Number of variants in the array.
  71. int m_numNamedVariants;
  72. };
  73. #endif //HK_ROOT_CONTAINER_H
  74. /*
  75. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  76. * Confidential Information of Havok.  (C) Copyright 1999-2009
  77. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  78. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  79. * rights, and intellectual property rights in the Havok software remain in
  80. * Havok and/or its suppliers.
  81. * Use of this software for evaluation purposes is subject to and indicates
  82. * acceptance of the End User licence Agreement for this product. A copy of
  83. * the license is included with this software and is also available at www.havok.com/tryhavok.
  84. */