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

其他游戏

开发平台:

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_TRANSMISSION_DEFAULT_hkVehicleDefaultTransmission_XML_H
  9. #define HKVEHICLE_TRANSMISSION_DEFAULT_hkVehicleDefaultTransmission_XML_H
  10. #include <Physics/Vehicle/Transmission/hkpVehicleTransmission.h>
  11. /// The hkpVehicleDefaultTransmission class implements an automatic transmission, with n
  12. /// gears and a reverse gear, different torque ratios for each wheel (so FWD - RWD -
  13. /// AWD can be specified) and clutch delay.
  14. class hkpVehicleDefaultTransmission : public hkpVehicleTransmission
  15. {
  16. public:
  17. HK_DECLARE_REFLECTION();
  18. /// Default constructor
  19. hkpVehicleDefaultTransmission();
  20. //
  21. // Methods
  22. //
  23. /// Calculates information about the effects of transmission on the vehicle.
  24. virtual void calcTransmission(const hkReal deltaTime, const hkpVehicleInstance* vehicle, TransmissionOutput& TransmissionOutputOut);
  25. /// A utility function to calculate the primaryTransmissionRatio for a vehicle. The answer
  26. /// returned is intended only as a guideline. It will probably need to be tweaked a little
  27. /// to give the exact desired performance. See the "Tuning tips" of the Havok User Guide
  28. /// for more details.
  29. /// The formula is copied here:
  30. /// TopSpeedCar[m/s] = TopSpeedOfCar[mph] * 1.605 / 3.6 
  31. /// MaxWheelAngularVel = TopSpeedCar[m/s] / wheelRadius 
  32. /// MaxWheelRPM = MaxWheelAngularVel * 60 / 2 * PI 
  33. /// PrimirayTransmissionRatio = maxEngineRPM / MaxWheelRPM 
  34. static hkReal HK_CALL calculatePrimaryTransmissionRatio( const hkReal vehicleTopSpeed,
  35. const hkReal wheelRadius,
  36. const hkReal maxEngineRpm,
  37. const hkReal topGearRatio );
  38. //
  39. // The following functions are all used by calcTransmission.
  40. //
  41. public:
  42. /// Calculates the transmitted torque.
  43. virtual hkReal calcMainTransmittedTorque(const hkpVehicleInstance* vehicle, TransmissionOutput& transmissionOut) const;
  44. /// Calculates the transmission RPM.
  45. virtual hkReal calcTransmissionRPM(const hkpVehicleInstance* vehicle, TransmissionOutput& transmissionOut) const;
  46. /// Calculates if the vehicle is currently reversing.
  47. virtual hkBool calcIsReversing(const hkpVehicleInstance* vehicle, TransmissionOutput& transmissionOut) const;
  48. /// Calculates the current gear.
  49. virtual void updateCurrentGear( const hkReal deltaTime, const hkpVehicleInstance* vehicle, TransmissionOutput& transmissionOut );
  50. /// Returns the gear ratio of the current gear.
  51. virtual hkReal getCurrentRatio(const hkpVehicleInstance* vehicle, TransmissionOutput& transmissionOut) const;
  52. //
  53. // Members
  54. //
  55. public:
  56. /// The RPM of the engine the transmission shifts down.
  57. hkReal m_downshiftRPM;
  58. /// The RPM of the engine the transmission shifts up. Note: m_upshiftRpm >
  59. /// m_downshiftRpm.
  60. hkReal m_upshiftRPM;
  61. /// An extra factor to the gear ratio.
  62. hkReal m_primaryTransmissionRatio;
  63. /// The time needed [seconds] to shift a gear.
  64. hkReal m_clutchDelayTime;
  65. /// The back gear ratio.
  66. hkReal m_reverseGearRatio;
  67. /// The ratio of the forward gears.
  68. hkArray<hkReal> m_gearsRatio;
  69. /// The transmission ratio for every wheel
  70. hkArray<hkReal> m_wheelsTorqueRatio;
  71. protected:
  72. #if defined HK_DEBUG
  73. // Check that the sum of all the wheel torque ratios equals 1.0f. Fire a warning if it does not.
  74. void checkTotalWheelTorqueRatio( const hkpVehicleInstance* vehicle ) const;
  75. #endif // #if defined HK_DEBUG
  76. public:
  77. hkpVehicleDefaultTransmission(hkFinishLoadedObjectFlag f) :
  78. hkpVehicleTransmission(f), m_gearsRatio(f), m_wheelsTorqueRatio(f) { }
  79. };
  80. #endif // HKVEHICLE_TRANSMISSION_DEFAULT_hkVehicleDefaultTransmission_XML_H
  81. /*
  82. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  83. * Confidential Information of Havok.  (C) Copyright 1999-2009
  84. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  85. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  86. * rights, and intellectual property rights in the Havok software remain in
  87. * Havok and/or its suppliers.
  88. * Use of this software for evaluation purposes is subject to and indicates
  89. * acceptance of the End User licence Agreement for this product. A copy of
  90. * the license is included with this software and is also available at www.havok.com/tryhavok.
  91. */