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

其他游戏

开发平台:

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_STATISTICS_PROCESS_H
  9. #define HK_STATISTICS_PROCESS_H
  10. #include <Common/Visualize/hkProcess.h>
  11. class hkDisplayHandler;
  12. class hkProcessContext;
  13. class hkpWorld;
  14. /// Retrieves stats from the monitors and sends them for serialization.
  15. class hkStatisticsProcess : public hkReferencedObject, public hkProcess
  16. {
  17. public:
  18. enum Command
  19. {
  20. HK_SEND_STATISTICS_DUMP = 10 // 10 as moved from debug display command list
  21. };
  22. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_VDB);
  23. /// Creates a hkStatisticsProcess.
  24. static hkProcess* HK_CALL create(const hkArray<hkProcessContext*>& contexts);
  25. /// Registers the hkStatisticsProcess with the hkProcessFactory.
  26. static void HK_CALL registerProcess();
  27. /// Gets the tag associated with this viewer type
  28. virtual int getProcessTag() { return m_tag; }
  29. static inline const char* HK_CALL getName() { return "Statistics"; }
  30. virtual void step(hkReal frameTimeInMs);
  31. protected:
  32. hkStatisticsProcess(const hkArray<hkProcessContext*>& contexts);
  33. virtual ~hkStatisticsProcess();
  34. protected:
  35. hkArray<hkProcessContext*> m_contexts;
  36. hkArray<char> m_infoBuffer;
  37. hkArray<char> m_strBuffer;
  38. static int m_tag;
  39. };
  40. #endif // HK_STATISTICS_VIEWER_H
  41. /*
  42. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  43. * Confidential Information of Havok.  (C) Copyright 1999-2009
  44. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  45. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  46. * rights, and intellectual property rights in the Havok software remain in
  47. * Havok and/or its suppliers.
  48. * Use of this software for evaluation purposes is subject to and indicates
  49. * acceptance of the End User licence Agreement for this product. A copy of
  50. * the license is included with this software and is also available at www.havok.com/tryhavok.
  51. */