hkBuiltinTypeRegistry.cxx
上传用户: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_CLASSES_FILE
  9. # error Please define HK_CLASSES_FILE before including this file
  10. #endif
  11. // The default is to register all typeinfos and classes
  12. #ifndef HK_REGISTER_TYPEINFOS
  13. # define HK_REGISTER_TYPEINFOS 1
  14. #endif
  15. #ifndef HK_REGISTER_CLASSES
  16. # define HK_REGISTER_CLASSES 1
  17. #endif
  18. #include <Common/Serialize/hkSerialize.h>
  19. #include <Common/Serialize/Util/hkBuiltinTypeRegistry.h>
  20. #include <Common/Base/Reflection/hkTypeInfo.h>
  21. class hkClass;
  22. class hkTypeInfo;
  23. // Forward declarations of all used classes and typeinfos
  24. #if HK_REGISTER_TYPEINFOS || HK_REGISTER_CLASSES
  25. # define HK_CLASS(A) extern const hkClass A##Class; extern const hkTypeInfo A##TypeInfo;
  26. # define HK_STRUCT(A) extern const hkClass A##Class; extern const hkTypeInfo A##TypeInfo;
  27. # define HK_ABSTRACT_CLASS(A) extern const hkClass A##Class;
  28. # include HK_CLASSES_FILE
  29. # undef HK_STRUCT
  30. # undef HK_CLASS
  31. # undef HK_ABSTRACT_CLASS
  32. #endif
  33. #if HK_REGISTER_TYPEINFOS
  34. // nonvirtual type infos
  35. # define HK_CLASS(A) // nothing
  36. # define HK_STRUCT(A) // nothing
  37. # define HK_ABSTRACT_CLASS(A) // nothing
  38. # include HK_CLASSES_FILE
  39. # undef HK_STRUCT
  40. # undef HK_CLASS
  41. # undef HK_ABSTRACT_CLASS
  42. // List of all typeinfos
  43. const hkTypeInfo* const hkBuiltinTypeRegistry::StaticLinkedTypeInfos[] =
  44. {
  45. # define HK_CLASS(A) &A##TypeInfo,
  46. # define HK_STRUCT(A) // nothing
  47. # define HK_ABSTRACT_CLASS(A) // nothing
  48. # include HK_CLASSES_FILE
  49. # undef HK_CLASS
  50. # define HK_CLASS(A) // nothing
  51. # undef HK_STRUCT
  52. # define HK_STRUCT(A) &A##TypeInfo,
  53. # include HK_CLASSES_FILE
  54. # undef HK_STRUCT
  55. # undef HK_CLASS
  56. # undef HK_ABSTRACT_CLASS
  57. HK_NULL
  58. };
  59. #else
  60. // empty typeinfo list
  61. const hkTypeInfo* const hkBuiltinTypeRegistry::StaticLinkedTypeInfos[] =
  62. {
  63. HK_NULL
  64. };
  65. #endif
  66. #if HK_REGISTER_CLASSES
  67. // List of all classes
  68. // The strange construction is to ensure that the classes
  69. // are in the same order of the typeinfo list.
  70. const hkClass* const hkBuiltinTypeRegistry::StaticLinkedClasses[] =
  71. {
  72. # define HK_CLASS(A) &A##Class,
  73. # define HK_STRUCT(A) // nothing
  74. # define HK_ABSTRACT_CLASS(A) // nothing
  75. # include HK_CLASSES_FILE
  76. # undef HK_STRUCT
  77. # undef HK_CLASS
  78. # undef HK_ABSTRACT_CLASS
  79. # define HK_CLASS(A) // nothing
  80. # define HK_ABSTRACT_CLASS(A) // nothing
  81. # define HK_STRUCT(A) &A##Class,
  82. # include HK_CLASSES_FILE
  83. # undef HK_STRUCT
  84. # undef HK_CLASS
  85. # undef HK_ABSTRACT_CLASS
  86. # define HK_CLASS(A) // nothing
  87. # define HK_STRUCT(A) // nothing
  88. # define HK_ABSTRACT_CLASS(A) &A##Class,
  89. # include HK_CLASSES_FILE
  90. # undef HK_STRUCT
  91. # undef HK_CLASS
  92. # undef HK_ABSTRACT_CLASS
  93. HK_NULL
  94. };
  95. #else
  96. // empty classes list
  97. const hkClass* const hkBuiltinTypeRegistry::StaticLinkedClasses[] =
  98. {
  99. HK_NULL
  100. };
  101. #endif
  102. /*
  103. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  104. * Confidential Information of Havok.  (C) Copyright 1999-2009
  105. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  106. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  107. * rights, and intellectual property rights in the Havok software remain in
  108. * Havok and/or its suppliers.
  109. * Use of this software for evaluation purposes is subject to and indicates
  110. * acceptance of the End User licence Agreement for this product. A copy of
  111. * the license is included with this software and is also available at www.havok.com/tryhavok.
  112. */