hkaFootStepTiming.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_FOOTSTEP_TIMING_H
  9. #define HK_FOOTSTEP_TIMING_H
  10. class hkaExpandAnimationUtility;
  11. class hkaFootStepTiming
  12. {
  13. public:
  14. /// Default initialization
  15. hkaFootStepTiming();
  16. /// Initialize from an expanded animation
  17. hkaFootStepTiming( const hkArray< hkBool >& isDown, hkReal duration );
  18. /// Initialize
  19. void init( const hkArray< hkBool >& isDown, hkReal duration );
  20. /// return The time that the foot first contacts the ground
  21. hkReal getDownTime() const;
  22. /// return The time that the foot first lifts from the ground
  23. hkReal getUpTime() const;
  24. /// return The midpoint for the foot down
  25. hkReal getMidDownTime() const;
  26. /// return The midpoint for the foot down
  27. hkReal getMidUpTime() const;
  28. /// return The length of time that the foot is down
  29. hkReal getDownDuration() const;
  30. /// return The length of time that the foot is up
  31. hkReal getUpDuration() const;
  32. /// return True if the foot is down at the specified time
  33. bool isDown( hkReal time ) const;
  34. /// return True if the foot is up at the specified time
  35. bool isUp( hkReal time ) const;
  36. /// return The midpoint in time between two events, takes wrapping into account
  37. hkReal getMidpoint( hkReal first, hkReal last ) const;
  38. /// Set the time that the foot strikes the ground
  39. inline void setDownTime( hkReal time ) { m_downTime = time; }
  40. /// Set the time that the foot releases from the ground
  41. inline void setUpTime( hkReal time ) { m_upTime = time; }
  42. /// Set the total duration of the cycle
  43. inline void setDuration( hkReal time ) { m_duration = time; }
  44. private:
  45. hkReal m_downTime;
  46. hkReal m_upTime;
  47. hkReal m_duration;
  48. };
  49. #endif // HK_FOOTSTEP_TIMING_H
  50. /*
  51. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  52. * Confidential Information of Havok.  (C) Copyright 1999-2009
  53. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  54. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  55. * rights, and intellectual property rights in the Havok software remain in
  56. * Havok and/or its suppliers.
  57. * Use of this software for evaluation purposes is subject to and indicates
  58. * acceptance of the End User licence Agreement for this product. A copy of
  59. * the license is included with this software and is also available at www.havok.com/tryhavok.
  60. */