KeyCode.inl
上传用户: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. //
  9. // PHYSICS
  10. //
  11. #if defined( HAVOK_PHYSICS_KEYCODE )
  12. #define USING_HAVOK_PHYSICS
  13. #else
  14. #define HAVOK_PHYSICS_KEYCODE ""
  15. #endif
  16. //
  17. // ANIMATION
  18. //
  19. #if defined( HAVOK_ANIMATION_KEYCODE )
  20. #define USING_HAVOK_ANIMATION
  21. #else
  22. #define HAVOK_ANIMATION_KEYCODE ""
  23. #endif
  24. //
  25. // BEHAVIOR
  26. //
  27. #if defined( HAVOK_BEHAVIOR_KEYCODE )
  28. #define USING_HAVOK_BEHAVIOR
  29. #else
  30. #define HAVOK_BEHAVIOR_KEYCODE ""
  31. #endif
  32. //
  33. // CLOTH
  34. //
  35. #if defined( HAVOK_CLOTH_KEYCODE )
  36. #define USING_HAVOK_CLOTH
  37. #else
  38. #define HAVOK_CLOTH_KEYCODE ""
  39. #endif
  40. //
  41. // DESTRUCTION
  42. //
  43. #if defined( HAVOK_DESTRUCTION_KEYCODE )
  44. #define USING_HAVOK_DESTRUCTION
  45. #else
  46. #define HAVOK_DESTRUCTION_KEYCODE ""
  47. #endif
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56. //
  57. // Raise an error if no keycodes are set.
  58. //
  59. #if !defined(USING_HAVOK_PHYSICS) && !defined(USING_HAVOK_ANIMATION) && !defined(USING_HAVOK_BEHAVIOR) && !defined(USING_HAVOK_CLOTH) && !defined(USING_HAVOK_DESTRUCTION) 
  60. #error No keycodes found. Please enter your keycode(s) in <CommonBaseKeyCode.h>
  61. #endif
  62. //
  63. // Product dependency checks:
  64. //
  65. #if defined(USING_HAVOK_BEHAVIOR) && !defined(USING_HAVOK_PHYSICS)
  66. #error "Can't use BEHAVIOR without PHYSICS. Please add your PHYSICS keycode to <CommonBaseKeyCode.h>"
  67. #endif
  68. #if defined(USING_HAVOK_BEHAVIOR) && !defined(USING_HAVOK_ANIMATION)
  69. #error "Can't use BEHAVIOR without ANIMATION. Please add your ANIMATION keycode to <CommonBaseKeyCode.h>"
  70. #endif
  71. #if defined(USING_HAVOK_DESTRUCTION) && !defined(USING_HAVOK_PHYSICS)
  72. #error "Can't use DESTRUCTION without PHYSICS. Please add your PHYSICS keycode to <CommonBaseKeyCode.h>"
  73. #endif
  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. */