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

其他游戏

开发平台:

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_CD_BODY_PAIR_COLLECTOR
  9. #define HK_COLLIDE2_CD_BODY_PAIR_COLLECTOR
  10. class hkpCdBody;
  11. /// This class is used as an interface to the collision detector ( e.g. getPenetrations() )
  12. /// to collect pairs of hkpCdBody
  13. class hkpCdBodyPairCollector
  14. {
  15. public:
  16. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR(HK_MEMORY_CLASS_AGENT, hkpCdBodyPairCollector);
  17. /// Default constructor calls reset(), initializing the early out variable to false.
  18. inline hkpCdBodyPairCollector();
  19. inline virtual ~hkpCdBodyPairCollector();
  20. /// This is the function called for every hit of the collision detector.
  21. /// Note: for optimization purposes this should set the m_earlyOut:
  22. /// - true if you want to get no more hits
  23. /// - false if you want to get more hits (which is the default)
  24. virtual void addCdBodyPair( const hkpCdBody& bodyA, const hkpCdBody& bodyB ) = 0;
  25. /// resets m_earlyOut to false. You must call this function if you want to reuse an object of this class.
  26. inline virtual void reset();
  27. /// Gets the early out, if true, no more CdBodyPairs are reported
  28. inline hkBool getEarlyOut( ) const;
  29. protected:
  30. hkBool m_earlyOut;
  31. };
  32. #include <Physics/Collide/Agent/Query/hkpCdBodyPairCollector.inl>
  33. #endif // HK_COLLIDE2_CD_BODY_PAIR_COLLECTOR
  34. /*
  35. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  36. * Confidential Information of Havok.  (C) Copyright 1999-2009
  37. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  38. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  39. * rights, and intellectual property rights in the Havok software remain in
  40. * Havok and/or its suppliers.
  41. * Use of this software for evaluation purposes is subject to and indicates
  42. * acceptance of the End User licence Agreement for this product. A copy of
  43. * the license is included with this software and is also available at www.havok.com/tryhavok.
  44. */