hkpCollisionQueryUtil.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. HK_FORCE_INLINE hkpWorldRayCastOutputPpu* hkpShapeRayCastJobUtil::getNextFreeResult(hkpShapeRayCastCommand* command, hkpWorldRayCastOutputPpu* resultsArray, HK_PAD_ON_SPU(hkpWorldRayCastOutputPpu*)& nextFreeResult, hkReal hitFraction)
  9. {
  10. hkReal dummy = 1.0f;
  11. return hkpRayCastJobUtil<hkpShapeRayCastCommand, hkpWorldRayCastOutputPpu>::getNextFreeResult(command, resultsArray, nextFreeResult, hitFraction, dummy);
  12. }
  13. HK_FORCE_INLINE hkpWorldRayCastOutputPpu* hkpWorldRayCastJobUtil::getNextFreeResult(hkpWorldRayCastCommand* command, hkpWorldRayCastOutputPpu* resultsArray, HK_PAD_ON_SPU(hkpWorldRayCastOutputPpu*)& nextFreeResult, hkReal hitFraction)
  14. {
  15. hkReal dummy = 1.0f;
  16. return hkpRayCastJobUtil<hkpWorldRayCastCommand, hkpWorldRayCastOutputPpu>::getNextFreeResult(command, resultsArray, nextFreeResult, hitFraction, dummy);
  17. }
  18. template <typename COMMAND, typename OUTPUT>
  19. OUTPUT* hkpRayCastJobUtil<COMMAND, OUTPUT>::getNextFreeResult(COMMAND* command, OUTPUT* resultsArray, HK_PAD_ON_SPU(OUTPUT*)& nextFreeResult, hkReal hitFraction, hkReal& maxHitFractionOut)
  20. {
  21. OUTPUT* resultToReturn = HK_NULL;
  22. // maxhitFractionOut is the biggest hit fraction that we find while searching the array
  23. // This is slightly worse than we could do - we want the biggest hit fraction AFTER we replace one of the entries
  24. // But that would require rescanning the array.
  25. // check if there's still room left in the array for the new results or if we have to evict the furthest hit
  26. if ( command->m_numResultsOut < command->m_resultsCapacity )
  27. {
  28. resultToReturn = nextFreeResult;
  29. command->m_numResultsOut++;
  30. nextFreeResult = nextFreeResult + 1;
  31. maxHitFractionOut = 1.0f;
  32. }
  33. else
  34. {
  35. OUTPUT* furthestHit = resultsArray;
  36. OUTPUT* currentHitInArray = resultsArray + 1;
  37. //
  38. // search for the furthest hit
  39. //
  40. {
  41. for (int i = 1; i < command->m_numResultsOut; i++)
  42. {
  43. if ( currentHitInArray->m_hitFraction > furthestHit->m_hitFraction )
  44. {
  45. furthestHit = currentHitInArray;
  46. }
  47. currentHitInArray++;
  48. }
  49. }
  50. if ( hitFraction < furthestHit->m_hitFraction )
  51. {
  52. maxHitFractionOut = furthestHit->m_hitFraction;
  53. resultToReturn = furthestHit;
  54. }
  55. }
  56. return resultToReturn;
  57. }
  58. /*
  59. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  60. * Confidential Information of Havok.  (C) Copyright 1999-2009
  61. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  62. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  63. * rights, and intellectual property rights in the Havok software remain in
  64. * Havok and/or its suppliers.
  65. * Use of this software for evaluation purposes is subject to and indicates
  66. * acceptance of the End User licence Agreement for this product. A copy of
  67. * the license is included with this software and is also available at www.havok.com/tryhavok.
  68. */