hkClassEnum.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_BASE_CLASS_ENUM_H
  9. #define HK_BASE_CLASS_ENUM_H
  10. class hkClass;
  11. class hkStreamWriter;
  12. class hkCustomAttributes;
  13. /// hkClassEnum meta information
  14. extern const hkClass hkClassEnumClass;
  15. extern const hkClass hkClassEnumItemClass;
  16. /// Reflection object for enumerated types.
  17. class hkClassEnum
  18. {
  19. public:
  20. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR(HK_MEMORY_CLASS_HKCLASS, hkClassEnum);
  21. HK_DECLARE_REFLECTION();
  22. /// A single enumerated name and value pair.
  23. class Item
  24. {
  25. public:
  26. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR(HK_MEMORY_CLASS_BASE, Item);
  27. HK_DECLARE_REFLECTION();
  28. /// Create a new enumerated item.
  29. Item( int v, const char* n) : m_value(v), m_name(n) { }
  30. /// Get the name of this item.
  31. const char* getName() const { return m_name; }
  32. /// Get the integer value of this item.
  33. int getValue() const { return m_value; }
  34. private:
  35. int m_value;
  36. const char* m_name;
  37. };
  38. enum FlagValues
  39. {
  40. FLAGS_NONE = 0
  41. };
  42. typedef hkFlags<FlagValues, hkUint32> Flags;
  43. /// Create an enumerated type.
  44. hkClassEnum( const char* name, const Item* items, int numItems );
  45. /// Get the name of this type.
  46. const char* getName() const;
  47. /// Get the number of values of this enum.
  48. int getNumItems() const;
  49. /// Get the i'th item.
  50. const hkClassEnum::Item& getItem(int i) const;
  51. /// Get the name of the item with value val.
  52. /// Not to be confused with the i'th item.
  53. hkResult getNameOfValue( int val, const char** name ) const;
  54. /// Get the value of the item named name (note: case insensitive)
  55. /// Not to be confused with the index of the item.
  56. hkResult getValueOfName( const char* name, int* val ) const;
  57. ///
  58. hkResult decomposeFlags( int flagValue, hkArray<const char*>& bitsOut, int& bitsOver ) const;
  59. /// Get the enum signature for versioning.
  60. hkUint32 getSignature() const;
  61. /// Write the enum signature for versioning.
  62. void writeSignature( hkStreamWriter* w ) const;
  63. ///
  64. const hkVariant* getAttribute(const char* name) const;
  65. /// See the Flags enum for a description of flags.
  66. inline const Flags& getFlags() const;
  67. /// See the Flags enum for a description of flags.
  68. inline Flags& getFlags();
  69. private:
  70. const char* m_name;
  71. const class Item* m_items;
  72. int m_numItems;
  73. class hkCustomAttributes* m_attributes; //+serialized(false)
  74. Flags m_flags;
  75. };
  76. #include <Common/Base/Reflection/hkClassEnum.inl>
  77. #endif // HK_BASE_CLASS_ENUM_H
  78. /*
  79. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  80. * Confidential Information of Havok.  (C) Copyright 1999-2009
  81. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  82. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  83. * rights, and intellectual property rights in the Havok software remain in
  84. * Havok and/or its suppliers.
  85. * Use of this software for evaluation purposes is subject to and indicates
  86. * acceptance of the End User licence Agreement for this product. A copy of
  87. * the license is included with this software and is also available at www.havok.com/tryhavok.
  88. */