hkStopwatch.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 HKBASE_HKSTOPWATCH_H 
  9. #define HKBASE_HKSTOPWATCH_H
  10. /// An hkStopwatch provides high resolution timing.
  11. /// Time is stored internally as a 64 bit integer. 
  12. class hkStopwatch
  13. {
  14. public:
  15.         HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR(HK_MEMORY_CLASS_ARRAY, hkStopwatch);
  16. /// 
  17. static hkUint64 HK_CALL getTickCounter();
  18. /// 
  19. static hkUint64 HK_CALL getTicksPerSecond();
  20. public:
  21. /// Creates a new stopwatch with optional name
  22. hkStopwatch( const char* name=HK_NULL );
  23. /// Starts the stopwatch.
  24. void start();
  25. /// Stops the stopwatch. The split ticks are also stopped.
  26. void stop();
  27. /// Resets the counter and split counter to zero.
  28. void reset();
  29. /// Checks if the stopwatch is currently running.
  30. hkBool isRunning() const;
  31. /// Returns the name given in the constructor.
  32. const char* getName() const;
  33. /// Returns the elapsed time in seconds.
  34. hkReal getElapsedSeconds() const;
  35. /// Returns the split time in seconds.
  36. /// The split time is the amount of time elapsed since the last
  37. /// call to a getSplit method. Internally this calls getSplitTicks()
  38. /// and converts the value to seconds.
  39. hkReal getSplitSeconds();
  40. /// Returns the elapsed time in ticks.
  41. /// Ticks are a machine dependent quantity and may or may not
  42. /// map exactly to hardware cycles.
  43. hkUint64 getElapsedTicks() const;
  44. /// Returns the split time in ticks.
  45. /// The split time is the amount of time elapsed since the last
  46. /// call to a getSplit method.
  47. hkUint64 getSplitTicks();
  48. /// How many times has this stopwatch been stopped?
  49. int getNumTimings() const;
  50. /// Resumes the stopwatch.
  51. void resume();
  52. protected:
  53. static hkReal HK_CALL divide64(hkUint64, hkUint64);
  54. hkUint64 m_ticks_at_start;
  55. hkUint64 m_ticks_total;
  56. hkUint64 m_ticks_at_split;
  57. hkUint64 m_split_total;
  58. hkBool m_running_flag;
  59. int m_num_timings;
  60. const char* m_name;
  61. };
  62. #include <Common/Base/System/Stopwatch/hkStopwatch.inl>
  63. #endif // HKBASE_HKSTOPWATCH_H
  64. /*
  65. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  66. * Confidential Information of Havok.  (C) Copyright 1999-2009
  67. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  68. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  69. * rights, and intellectual property rights in the Havok software remain in
  70. * Havok and/or its suppliers.
  71. * Use of this software for evaluation purposes is subject to and indicates
  72. * acceptance of the End User licence Agreement for this product. A copy of
  73. * the license is included with this software and is also available at www.havok.com/tryhavok.
  74. */