hkpVehicleAerodynamics.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 HKP_VEHICLE_AERODYNAMICS_H
  9. #define HKP_VEHICLE_AERODYNAMICS_H
  10. #include <Common/Base/hkBase.h>
  11. class hkpVehicleInstance;
  12. /// The hkpVehicleAerodynamics is responsible for providing the total force and
  13. /// torque applied to the chassis by environmental forces.  Examples of
  14. /// environmental forces include aerodynamic drag and aerodynamic lift. 
  15. class hkpVehicleAerodynamics : public hkReferencedObject
  16. {
  17. public:
  18. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_VEHICLE);
  19. HK_DECLARE_REFLECTION();
  20. /// Container for data output by the aerodynamics calculations.
  21. struct AerodynamicsDragOutput
  22. {
  23. public:
  24. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_VEHICLE, hkpVehicleAerodynamics::AerodynamicsDragOutput );
  25. /// The total force applied by all aerodynamics forces.
  26. hkVector4 m_aerodynamicsForce;
  27. /// The total torque applied by all aerodynamics forces
  28. hkVector4 m_aerodynamicsTorque;
  29. };
  30. //
  31. // Methods
  32. //
  33. /// Calculates the effect of aerodynamic forces on the vehicle.
  34. virtual void calcAerodynamics(const hkReal deltaTime, const hkpVehicleInstance* vehicle, AerodynamicsDragOutput& dragInfoOut) = 0;
  35. public:
  36. hkpVehicleAerodynamics(hkFinishLoadedObjectFlag flag) : hkReferencedObject(flag) {}
  37. protected:
  38. hkpVehicleAerodynamics() {}
  39. };
  40. #endif // HKP_VEHICLE_AERODYNAMICS_H
  41. /*
  42. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  43. * Confidential Information of Havok.  (C) Copyright 1999-2009
  44. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  45. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  46. * rights, and intellectual property rights in the Havok software remain in
  47. * Havok and/or its suppliers.
  48. * Use of this software for evaluation purposes is subject to and indicates
  49. * acceptance of the End User licence Agreement for this product. A copy of
  50. * the license is included with this software and is also available at www.havok.com/tryhavok.
  51. */