hkInternalClassMember.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_BASE_INTERNALCLASSMEMBER_H
  9. #define HK_BASE_INTERNALCLASSMEMBER_H
  10. class hkClassEnum;
  11. class hkClass;
  12. struct hkInternalCustomAttributes
  13. {
  14. struct Attribute
  15. {
  16. const char* m_name;
  17. const void* m_data;
  18. const hkClass* m_klass;
  19. HK_DECLARE_SYSTEM_ALLOCATOR();
  20. };
  21. const Attribute* m_attributes;
  22. int m_numAttributes;
  23. HK_DECLARE_SYSTEM_ALLOCATOR();
  24. };
  25. // This is a struct with the same data layout as an hkMember object.
  26. // Compilers can efficiently place hkInternalMembers directly into the data
  27. // section, whereas the use of hkMember objects force huge number of
  28. // calls to hkMember::hkMember not to mention code bloat from the global 
  29. // constructor chain.
  30. struct hkInternalClassMember
  31. {
  32. // None of these classes have havok allocators since they are
  33. // only used to define static const data and should never be new-ed
  34. const char* m_name;
  35. const hkClass* m_class;
  36. const hkClassEnum* m_enum;
  37. hkUint8 m_type;
  38. hkUint8 m_subtype;
  39. hkUint16 m_cArraySize;
  40. hkUint16 m_flags;
  41. hkUint16 m_offset;
  42. const hkInternalCustomAttributes* m_attributes;
  43. HK_DECLARE_SYSTEM_ALLOCATOR();
  44. };
  45. struct hkInternalClassEnumItem
  46. {
  47. int m_value;
  48. const char* m_name;
  49. HK_DECLARE_SYSTEM_ALLOCATOR();
  50. };
  51. struct hkInternalClassEnum
  52. {
  53. const char* m_name;
  54. const hkInternalClassEnumItem* m_items;
  55. int m_numItems;
  56. const hkInternalCustomAttributes* m_attributes;
  57. hkUint32 m_flags;
  58. HK_DECLARE_SYSTEM_ALLOCATOR();
  59. };
  60. struct hkInternalClass
  61. {
  62. const char* m_name;
  63. const hkInternalClass* m_parent;
  64. int m_objectSize;
  65. //const hkClass** m_implementedInterfaces;
  66. int m_numImplementedInterfaces;
  67. const hkInternalClassEnum* m_declaredEnums;
  68. int m_numDeclaredEnums;
  69. const hkInternalClassMember* m_declaredMembers;
  70. int m_numDeclaredMembers;
  71. const void* m_defaults;
  72. const hkInternalCustomAttributes* m_attributes;
  73. int m_flags;
  74. int m_describedVersion;
  75. };
  76. #endif // HK_BASE_INTERNALCLASSMEMBER_H
  77. /*
  78. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  79. * Confidential Information of Havok.  (C) Copyright 1999-2009
  80. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  81. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  82. * rights, and intellectual property rights in the Havok software remain in
  83. * Havok and/or its suppliers.
  84. * Use of this software for evaluation purposes is subject to and indicates
  85. * acceptance of the End User licence Agreement for this product. A copy of
  86. * the license is included with this software and is also available at www.havok.com/tryhavok.
  87. */