hkpVehicleDefaultSuspension.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 HKVEHICLE_SUSPENSION_DEFAULT_hkVehicleDefaultSuspension_XML_H
  9. #define HKVEHICLE_SUSPENSION_DEFAULT_hkVehicleDefaultSuspension_XML_H
  10. #include <Physics/Vehicle/Suspension/hkpVehicleSuspension.h>
  11. class hkpVehicleInstance;
  12. /// The hkpVehicleDefaultSuspension class implements a default, spring-based, suspension
  13. /// module for vehicles.
  14. class hkpVehicleDefaultSuspension : public hkpVehicleSuspension
  15. {
  16. public:
  17. HK_DECLARE_REFLECTION();
  18. hkpVehicleDefaultSuspension() { }
  19. //
  20. // Methods
  21. //
  22. /// Calculates information about the effects of suspension on the vehicle.
  23. virtual void calcSuspension(const hkReal deltaTime, const hkpVehicleInstance* vehicle, const hkpVehicleWheelCollide::CollisionDetectionWheelOutput* cdInfo, hkReal* suspensionForceOut);
  24. //
  25. // Members
  26. //
  27. public:
  28. /// A struct containing all the wheel spring suspension parameters.
  29. struct WheelSpringSuspensionParameters
  30. {
  31. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_VEHICLE, hkpVehicleDefaultSuspension::WheelSpringSuspensionParameters );
  32. HK_DECLARE_REFLECTION();
  33. /// The strength [N/m] of the suspension at each wheel.
  34. hkReal m_strength;
  35. /// The damping force [N/(m/sec)] of the suspension at each wheel.
  36. hkReal m_dampingCompression;
  37. /// The damping force [N/(m/sec)] of the suspension at each wheel.
  38. hkReal m_dampingRelaxation;
  39. };
  40. /// Suspension wheel parameters for each wheel.
  41. hkArray<struct WheelSpringSuspensionParameters> m_wheelSpringParams;
  42. public:
  43. hkpVehicleDefaultSuspension(hkFinishLoadedObjectFlag f) : hkpVehicleSuspension(f), m_wheelSpringParams(f) { }
  44. };
  45. #endif // HKVEHICLE_SUSPENSION_DEFAULT_hkVehicleDefaultSuspension_XML_H
  46. /*
  47. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  48. * Confidential Information of Havok.  (C) Copyright 1999-2009
  49. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  50. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  51. * rights, and intellectual property rights in the Havok software remain in
  52. * Havok and/or its suppliers.
  53. * Use of this software for evaluation purposes is subject to and indicates
  54. * acceptance of the End User licence Agreement for this product. A copy of
  55. * the license is included with this software and is also available at www.havok.com/tryhavok.
  56. */