hkpCollideDebugUtil.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_COLLIDE2_COLLIDE_DEBUG_UTIL_H
  9. #define HK_COLLIDE2_COLLIDE_DEBUG_UTIL_H
  10. //#define HK_DISABLE_DEBUG_DISPLAY
  11. #include <Common/Visualize/hkDebugDisplay.h>
  12. #include <Common/Visualize/hkDebugDisplayHandler.h>
  13. #include <Common/Base/Types/Geometry/Aabb/hkAabb.h>
  14. /// A utility class for drawing OBBs and AABBs as debug lines.  They can be
  15. /// output to the generic debug display or sent directly to a display handler.
  16. class hkpCollideDebugUtil
  17. {
  18. public:
  19. /// Draws an OBB as a series of debug lines.
  20. static void HK_CALL drawObbLines(const hkTransform& t, const hkVector4& halfExtents, unsigned int colour, hkDebugDisplayHandler* displayHandler = HK_NULL, int tag = 0)
  21. {
  22. #ifndef HK_DISABLE_DEBUG_DISPLAY
  23. // draw the lines
  24. hkVector4 points[8];
  25. // points 
  26. {
  27. for (int i = 0; i < 8; i++)
  28. {
  29. hkVector4 v = halfExtents;
  30. if ( i & 1 ) v(0) *= -1.0f;
  31. if ( i & 2 ) v(1) *= -1.0f;
  32. if ( i & 4 ) v(2) *= -1.0f;
  33. points[i].setTransformedPos(t, v);
  34. }
  35. }
  36. // edges
  37. {
  38. for (int i = 0; i < 8; i++)
  39. {
  40. for ( int bit = 1; bit < 8; bit <<= 1 )
  41. {
  42. int j = i ^ bit;
  43. if ( i < j )
  44. {
  45. hkVector4 start = points[i];
  46. hkVector4 end = points[j];
  47. if(displayHandler)
  48. {
  49. displayHandler->displayLine(start, end, colour, tag);
  50. }
  51. else
  52. {
  53. HK_DISPLAY_LINE(start, end, colour);
  54. }
  55. }
  56. }
  57. }
  58. }
  59. #endif
  60. }
  61. /// Draws an array of AABBs as a series of debug lines.
  62. static void HK_CALL displayAabbs(hkArray<hkAabb>& aabbs, unsigned int colour, hkDebugDisplayHandler* displayHandler = HK_NULL, int tag = 0)
  63. {
  64. #ifndef HK_DISABLE_DEBUG_DISPLAY
  65. for(int i=0; i<aabbs.getSize(); i++)
  66. {
  67. hkAabb aabb = aabbs[i];
  68. {
  69. hkTransform t;
  70. t.setIdentity();
  71. hkVector4 centre = aabb.m_min;
  72. centre.add4(aabb.m_max);
  73. centre.mul4(0.5f);
  74. t.setTranslation(centre);
  75. hkVector4 halfExtents = aabb.m_max;
  76. halfExtents.sub4(aabb.m_min);
  77. halfExtents.mul4(0.5f);
  78. drawObbLines(t, halfExtents, colour, displayHandler, tag);
  79. }
  80. }
  81. #endif
  82. }
  83. };
  84. #endif // HK_COLLIDE2_COLLIDE_DEBUG_UTIL_H
  85. /*
  86. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  87. * Confidential Information of Havok.  (C) Copyright 1999-2009
  88. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  89. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  90. * rights, and intellectual property rights in the Havok software remain in
  91. * Havok and/or its suppliers.
  92. * Use of this software for evaluation purposes is subject to and indicates
  93. * acceptance of the End User licence Agreement for this product. A copy of
  94. * the license is included with this software and is also available at www.havok.com/tryhavok.
  95. */