hkpFixedBufferCdPointCollector.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:4k
源码类别:

其他游戏

开发平台:

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_FIXED_BUFFER_CD_POINT_COLLECTOR_H
  9. #define HK_FIXED_BUFFER_CD_POINT_COLLECTOR_H
  10. #include <Physics/Collide/Agent/Query/hkpCdPointCollector.h>
  11. #include <Physics/Collide/Query/Collector/PointCollector/hkpRootCdPoint.h>
  12. ///
  13. /// This collector class will always collect the n closest points (with n == 'capacity' as supplied in the constructor).
  14. /// For now it is only used with hkCollisionQuery jobs. Its usage is hardcoded into the jobs, so you cannot derive and
  15. /// use your derived class instead, but you can register your own custom addCdPoint() callback function by calling
  16. /// registerFixedBufferCdPointCollectorAddCdPointCallbackFunction().
  17. ///
  18. class hkpFixedBufferCdPointCollector : public hkpCdPointCollector
  19. {
  20. public:
  21. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR(HK_MEMORY_CLASS_AGENT, hkpFixedBufferCdPointCollector);
  22. public:
  23. /// The constructor needs to be passed in a pointer to the result array and its maximum capacity.
  24. HK_FORCE_INLINE hkpFixedBufferCdPointCollector(hkpRootCdPoint* buffer, int capacity);
  25. HK_FORCE_INLINE const hkpRootCdPoint* getHits() const;
  26. HK_FORCE_INLINE int getNumHits();
  27. HK_FORCE_INLINE hkBool hasHit() const;
  28. /// Call this static function to register the collector's default addCdPoint() callback implementation.
  29. static void HK_CALL registerDefaultAddCdPointFunction();
  30. public:
  31. /// The collector's default addCdPoint() implementation.
  32. ///
  33. /// This implementation will collect up to n closest points (with n == 'capacity' as supplied in the class constructor).
  34. /// As long as there's room available in the internal array, new points will simply be appended.
  35. /// Once the maximum capacity is reached we will check if the new point is closer than the already available furthest
  36. /// point and replace the latter accordingly. 
  37. static void HK_CALL addCdPointImplementation(const hkpCdPoint& event, hkpFixedBufferCdPointCollector* collector);
  38. protected:
  39. virtual HK_FORCE_INLINE void addCdPoint(const hkpCdPoint& event);
  40. public:
  41. hkPadSpu<hkpRootCdPoint*> m_pointsArrayBase; // the result array's base address
  42. hkPadSpu<hkpRootCdPoint*> m_nextFreePoint; // the next free entry in the result array
  43. hkPadSpu<int> m_capacity; // the maximum number of entries available in the result array
  44. hkPadSpu<int> m_numPoints; // the current number of entries available in the result array
  45. };
  46. //
  47. // User callback registering stuff for hkpFixedBufferCdPointCollector::addCdPoint()
  48. //
  49. typedef void (HK_CALL *hkFixedBufferCdPointCollectorAddCdPointCallbackFunc)(const hkpCdPoint& event, class hkpFixedBufferCdPointCollector* collector);
  50. extern hkFixedBufferCdPointCollectorAddCdPointCallbackFunc g_FixedBufferCdPointCollectorAddCdPointCallbackFunc;
  51. /// Register your custom hkpFixedBufferCdPointCollector::addCdPoint() implementation with this function.
  52. ///
  53. /// Note that when using the hkpFixedBufferCdPointCollector you can only ever have one global, shared addCdPoint() implementation.
  54. HK_FORCE_INLINE void registerFixedBufferCdPointCollectorAddCdPointCallbackFunction(hkFixedBufferCdPointCollectorAddCdPointCallbackFunc func)
  55. {
  56. g_FixedBufferCdPointCollectorAddCdPointCallbackFunc = func;
  57. }
  58. #include <Physics/Collide/Query/Collector/PointCollector/hkpFixedBufferCdPointCollector.inl>
  59. #endif // HK_FIXED_BUFFER_CD_POINT_COLLECTOR_H
  60. /*
  61. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  62. * Confidential Information of Havok.  (C) Copyright 1999-2009
  63. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  64. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  65. * rights, and intellectual property rights in the Havok software remain in
  66. * Havok and/or its suppliers.
  67. * Use of this software for evaluation purposes is subject to and indicates
  68. * acceptance of the End User licence Agreement for this product. A copy of
  69. * the license is included with this software and is also available at www.havok.com/tryhavok.
  70. */