hkpFilteredSurfaceVelocityUtil.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_FILTERED_SURFACE_VELOCITY_UTIL
  9. #define HK_UTILITIES2_FILTERED_SURFACE_VELOCITY_UTIL
  10. #include <Physics/Utilities/Collide/ContactModifiers/SurfaceVelocity/hkpSurfaceVelocityUtil.h>
  11. class hkpRigidBody;
  12. /// Adds a surface velocity to all enabled entities.
  13. /// Note: If you want to set a surface velocity once and forever and you do not keep a pointer to
  14. /// the instance, do not forget to call removeReference
  15. class hkpFilteredSurfaceVelocityUtil: public hkpSurfaceVelocityUtil
  16. {
  17. public:
  18. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_UTILITIES);
  19. /// Creates a handle to a filtered surface velocity.
  20. ///
  21. /// Will call setSurfaceVelocity() in hkpResponseModifier, which gives the 
  22. /// surface a conveyor-belt like behavior. The propertyId is used as the property key
  23. /// to store a flag within an enabled entity. This value should be unique.
  24. hkpFilteredSurfaceVelocityUtil(hkpRigidBody* body, const hkVector4& surfaceVelocityWorld, int propertyId);
  25. /// Enables surface velocity for the supplied entity.
  26. ///
  27. /// Also stores a flag as property in the entity using the unique propertyId supplied in this
  28. /// class'es constructor.
  29. /// To understand constraintOwner, please read the reference manual for hkpResponseModifier
  30. void enableEntity(hkpEntity *entity, class hkpConstraintOwner* constraintOwner = HK_NULL );
  31. /// Disables surface velocity for the supplied entity. Also removes the flag property from entity.
  32. /// To understand constraintOwner, please read the reference manual for hkpResponseModifier
  33. void disableEntity(hkpEntity *entity, hkpConstraintOwner* constraintOwner = HK_NULL);
  34. protected:
  35. // The hkpCollisionListener interface implementation
  36. virtual void contactPointAddedCallback(hkpContactPointAddedEvent& event);
  37. protected:
  38. /// Custom property id used when marking an entity as 'enabled'
  39. int m_propertyId;
  40. };
  41. #endif // HK_UTILITIES2_FILTERED_SURFACE_VELOCITY_UTIL
  42. /*
  43. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  44. * Confidential Information of Havok.  (C) Copyright 1999-2009
  45. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  46. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  47. * rights, and intellectual property rights in the Havok software remain in
  48. * Havok and/or its suppliers.
  49. * Use of this software for evaluation purposes is subject to and indicates
  50. * acceptance of the End User licence Agreement for this product. A copy of
  51. * the license is included with this software and is also available at www.havok.com/tryhavok.
  52. */