keycode.cxx
上传用户: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. #include <Common/Base/KeyCode.h>
  9. #if defined(HK_PLATFORM_GC)
  10. # define KEYCODE_ATTRIBUTES __attribute__((section(".sdata")))
  11. #else
  12. # define KEYCODE_ATTRIBUTES
  13. #endif
  14. static int hkGetKeyValue(const char* keyCode)
  15. {
  16. char keyValue[11];
  17. int i=0;
  18. for (; (i < 10) && keyCode[i] && (keyCode[i] != ':'); i++)
  19. keyValue[i] = keyCode[i];
  20. keyValue[i] = '';
  21. return hkString::atoi(keyValue, 16);
  22. }
  23. //
  24. // PHYSICS
  25. //
  26. extern const char         HK_PHYSICS_KEYCODE[] KEYCODE_ATTRIBUTES = HAVOK_PHYSICS_KEYCODE;
  27. extern const unsigned int HK_PHYSICS_KEYVALUE  KEYCODE_ATTRIBUTES = hkGetKeyValue(HAVOK_PHYSICS_KEYCODE);
  28. //
  29. // ANIMATION
  30. //
  31. extern const char         HK_ANIMATION_KEYCODE[] KEYCODE_ATTRIBUTES = HAVOK_ANIMATION_KEYCODE;
  32. extern const unsigned int HK_ANIMATION_KEYVALUE  KEYCODE_ATTRIBUTES = hkGetKeyValue(HAVOK_ANIMATION_KEYCODE);
  33. //
  34. // BEHAVIOR
  35. //
  36. extern const char         HK_BEHAVIOR_KEYCODE[] KEYCODE_ATTRIBUTES = HAVOK_BEHAVIOR_KEYCODE;
  37. extern const unsigned int HK_BEHAVIOR_KEYVALUE  KEYCODE_ATTRIBUTES = hkGetKeyValue(HAVOK_BEHAVIOR_KEYCODE);
  38. //
  39. // CLOTH
  40. //
  41. extern const char         HK_CLOTH_KEYCODE[] KEYCODE_ATTRIBUTES = HAVOK_CLOTH_KEYCODE;
  42. extern const unsigned int HK_CLOTH_KEYVALUE  KEYCODE_ATTRIBUTES = hkGetKeyValue(HAVOK_CLOTH_KEYCODE);
  43. //
  44. // DESTRUCTION
  45. //
  46. extern const char         HK_DESTRUCTION_KEYCODE[] KEYCODE_ATTRIBUTES = HAVOK_DESTRUCTION_KEYCODE;
  47. extern const unsigned int HK_DESTRUCTION_KEYVALUE  KEYCODE_ATTRIBUTES = hkGetKeyValue(HAVOK_DESTRUCTION_KEYCODE);
  48. /*
  49. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  50. * Confidential Information of Havok.  (C) Copyright 1999-2009
  51. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  52. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  53. * rights, and intellectual property rights in the Havok software remain in
  54. * Havok and/or its suppliers.
  55. * Use of this software for evaluation purposes is subject to and indicates
  56. * acceptance of the End User licence Agreement for this product. A copy of
  57. * the license is included with this software and is also available at www.havok.com/tryhavok.
  58. */