hkStopwatch.inl
上传用户: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. HK_FORCE_INLINE void hkStopwatch::reset()
  9. {
  10. m_ticks_at_start = 0;
  11. m_ticks_total = 0;
  12. m_ticks_at_split = 0;
  13. m_split_total = 0;
  14. m_running_flag = 0;
  15. m_num_timings = 0;
  16. }
  17. HK_FORCE_INLINE hkStopwatch::hkStopwatch(const char* name)
  18. : m_name(name)
  19. {
  20. reset();
  21. }
  22. HK_FORCE_INLINE void hkStopwatch::start()
  23. {
  24. HK_ASSERT(0x28f9f73c, ! m_running_flag);
  25. m_running_flag = true;
  26. m_ticks_at_start = getTickCounter();
  27. m_ticks_at_split = m_ticks_at_start;
  28. }
  29. HK_FORCE_INLINE void hkStopwatch::stop()
  30. {
  31. HK_ASSERT(0x1d900cad, m_running_flag);
  32. m_running_flag = false;
  33. hkUint64 ticks_now = getTickCounter();
  34. m_ticks_total += ticks_now - m_ticks_at_start;
  35. m_split_total += ticks_now - m_ticks_at_split;
  36. ++m_num_timings;
  37. }
  38. HK_FORCE_INLINE void hkStopwatch::resume()
  39. {
  40. m_running_flag = true;
  41. }
  42. HK_FORCE_INLINE hkBool hkStopwatch::isRunning() const
  43. {
  44. return m_running_flag;
  45. }
  46. HK_FORCE_INLINE const char* hkStopwatch::getName() const
  47. {
  48. return m_name;
  49. }
  50. HK_FORCE_INLINE int hkStopwatch::getNumTimings() const
  51. {
  52. return m_num_timings;
  53. }
  54. HK_FORCE_INLINE hkUint64 hkStopwatch::getSplitTicks()
  55. {
  56. hkUint64 t = m_split_total;
  57. if(m_running_flag) 
  58. {
  59. hkUint64 now = getTickCounter();
  60. t += now - m_ticks_at_split;
  61. m_ticks_at_split = now;
  62. }
  63. m_split_total = 0;
  64. return t;
  65. }
  66. HK_FORCE_INLINE hkReal hkStopwatch::getSplitSeconds()
  67. {
  68. return divide64(getSplitTicks(), getTicksPerSecond());
  69. }
  70. HK_FORCE_INLINE hkUint64 hkStopwatch::getElapsedTicks() const
  71. {
  72. hkUint64 ticks = m_ticks_total;
  73. if( m_running_flag )
  74. {
  75. ticks += getTickCounter() - m_ticks_at_start;
  76. }
  77. return ticks;
  78. }
  79. HK_FORCE_INLINE hkReal hkStopwatch::getElapsedSeconds() const
  80. {
  81. return divide64(getElapsedTicks(), getTicksPerSecond());
  82. }
  83. /*
  84. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  85. * Confidential Information of Havok.  (C) Copyright 1999-2009
  86. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  87. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  88. * rights, and intellectual property rights in the Havok software remain in
  89. * Havok and/or its suppliers.
  90. * Use of this software for evaluation purposes is subject to and indicates
  91. * acceptance of the End User licence Agreement for this product. A copy of
  92. * the license is included with this software and is also available at www.havok.com/tryhavok.
  93. */