hkWindowsSystemClock.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_WINDOWS_SYSTEM_CLOCK
  9. #define HK_WINDOWS_SYSTEM_CLOCK
  10. # include <Common/Base/Fwd/hkwindows.h>
  11. class hkWindowsSystemClock : public hkSystemClock
  12. {
  13. public:
  14. virtual hkUint64 getTickCounter()
  15. {
  16. hkUint64 ticks;
  17. // note: using cpuid as a serializing makes timings more accurate, 
  18. // at the expense of more overhead. (1.5% without versus 5% with cpuid)
  19. __asm {
  20. push ebx
  21. //cpuid 
  22. pop ebx
  23. rdtsc
  24. mov dword ptr[ticks  ], eax
  25. mov dword ptr[ticks+4], edx
  26. }
  27. return ticks;
  28. }
  29. virtual hkUint64 getTicksPerSecond()
  30. {
  31. static hkUint64 freq = 0;
  32. if(freq==0)
  33. {
  34. hkUint64 ticks;
  35. hkUint64 qticks;
  36. hkUint64 ticks2;
  37. hkUint64 qticks2;
  38. double minFactor = 1e6f;
  39. // Iterate several times
  40. // We take the minimum value beacuse Sleep() sleeps for at least the specified time
  41. for (int iter = 0; iter <10; iter++)
  42. {
  43. ticks = getTickCounter();
  44. QueryPerformanceCounter( (LARGE_INTEGER*) &qticks);
  45. ///
  46. /// Sleep for a little while
  47. ///
  48. volatile int x=1;
  49. for (int j=0; j< 5000; j++)
  50. {
  51. x += x*x;
  52. }
  53. ticks2 = getTickCounter();
  54. QueryPerformanceCounter( (LARGE_INTEGER*) &qticks2);
  55. // We assume that this is fixed & regular 
  56. QueryPerformanceFrequency( (LARGE_INTEGER*) &freq);
  57. // Work our calibration factor
  58. hkUint64 diff = ticks2 - ticks;
  59. hkUint64 qdiff = qticks2 - qticks;
  60. double factor = double(diff)/ double(qdiff);
  61. // Is this smaller?
  62. if (factor < minFactor)
  63. {
  64. minFactor = factor;
  65. }
  66. }
  67. freq = hkUint64(minFactor * freq);
  68. }
  69. return freq;
  70. }
  71. };
  72. #endif  // HK_WINDOWS_SYSTEM_CLOCK
  73. /*
  74. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  75. * Confidential Information of Havok.  (C) Copyright 1999-2009
  76. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  77. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  78. * rights, and intellectual property rights in the Havok software remain in
  79. * Havok and/or its suppliers.
  80. * Use of this software for evaluation purposes is subject to and indicates
  81. * acceptance of the End User licence Agreement for this product. A copy of
  82. * the license is included with this software and is also available at www.havok.com/tryhavok.
  83. */