hkpSaveContactPointsEndianUtil.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_UTILITIES2_SAVE_CONTACT_POINTS_ENDIAN_UTIL_H
  9. #define HK_UTILITIES2_SAVE_CONTACT_POINTS_ENDIAN_UTIL_H
  10. #include <Common/Base/hkBase.h>
  11. #include <Common/Base/hkBase.h>
  12. struct hkpAgentEntry;
  13. struct hkpProcessCollisionInput;
  14. struct hkpSerializedAgentNnEntry;
  15. struct hkpSerializedTrack1nInfo;
  16. struct hkpAgentNnMachineTimEntry;
  17. struct hkpAgentNnMachinePaddedEntry; 
  18. struct hkpAgent1nMachineTimEntry;
  19. struct hkpAgent1nMachinePaddedEntry;
  20. class hkpBoxBoxManifold;
  21. struct hkpCapsuleTriangleCache3;
  22. class hkpGskCache;
  23. struct hkpGskManifold;
  24. class hkpContactPointProperties;
  25. class hkpSaveContactPointsEndianUtil
  26. {
  27. public:
  28. // Swap endianness in a collision entry, including all recursive subtracks.
  29. static void HK_CALL swapEndianTypeInCollisionEntry( const hkpProcessCollisionInput* input, hkpSerializedAgentNnEntry& serializedEntry );
  30. static void HK_CALL swapEndianTypeInEntry( const hkpProcessCollisionInput* input, hkpAgentEntry* entry, hkpSerializedTrack1nInfo& serializedTrack, hkBool isNnEntry, int& sizeOfThisEntryOut, bool& trackUsedOut);
  31. static void HK_CALL swapEndianTypeIn1nTrack( const hkpProcessCollisionInput* input, hkpSerializedTrack1nInfo& serializedTrack );
  32. //
  33. // Helper functions
  34. //
  35. // Base endian swapping func
  36. static inline void reverseBytes(void* start, int count);
  37. // Basic types swapping
  38. static inline void swapEndianType(hkUint16& uint16);
  39. static inline void swapEndianType(hkUint32& uint32);
  40. static inline void swapEndianType(hkReal& real);
  41. static inline void swapEndianType(hkVector4& vec4);
  42. // Agent entry swapping
  43. static inline void swapEndianType(hkpAgentNnMachineTimEntry* entry);
  44. static inline void swapEndianType(hkpAgentNnMachinePaddedEntry* entry); 
  45. static inline void swapEndianType(hkpAgent1nMachineTimEntry* entry);
  46. static inline void swapEndianType(hkpAgent1nMachinePaddedEntry* entry);
  47. // Agent data swaping
  48. static inline void swapEndianType(hkpBoxBoxManifold* manifold);
  49. static inline void swapEndianType(hkpCapsuleTriangleCache3* cache);
  50. static inline void swapEndianType(hkpGskCache* cache);
  51. static inline void swapEndianType(hkpGskManifold* manifold);
  52. static inline void swapEndianType(hkpContactPointProperties* p);
  53. };
  54. #endif // HK_UTILITIES2_SAVE_CONTACT_POINTS_ENDIAN_UTIL_H
  55. /*
  56. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  57. * Confidential Information of Havok.  (C) Copyright 1999-2009
  58. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  59. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  60. * rights, and intellectual property rights in the Havok software remain in
  61. * Havok and/or its suppliers.
  62. * Use of this software for evaluation purposes is subject to and indicates
  63. * acceptance of the End User licence Agreement for this product. A copy of
  64. * the license is included with this software and is also available at www.havok.com/tryhavok.
  65. */