hkSummaryStatisticsCollector.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_SUMMARY_STATISTICS_COLLECTOR_H
  9. #define HK_SUMMARY_STATISTICS_COLLECTOR_H
  10. #include <Common/Base/DebugUtil/StatisticsCollector/hkStatisticsCollector.h>
  11. #include <Common/Base/Container/PointerMap/hkPointerMap.h>
  12. #include <Common/Base/DebugUtil/StatisticsCollector/Report/hkReportStatisticsCollector.h>
  13. class hkSummaryStatisticsCollector: public hkStatisticsCollector
  14. {
  15. public:
  16. /// Ctor
  17. hkSummaryStatisticsCollector(hkVtableClassRegistry* vtblReg);
  18.         // hkStatisticsCollector interface
  19.         virtual void addReferencedObject(const char* fieldName, const hkReferencedObject* obj, int flags = 0) ;
  20.         // hkStatisticsCollector interface
  21.         virtual void addObject( const hkClass& cls, const char* fieldName, const void* obj, int flags = 0);
  22.         // hkStatisticsCollector interface
  23.         virtual void addChunk(MemoryType type, const char* name, const void* chunkAddress, int usedSize, int allocatedSize = 0) ;
  24.         // hkStatisticsCollector interface
  25.         virtual void pushDir( const char* dirName );
  26.         // hkStatisticsCollector interface
  27.         virtual void popDir();
  28.             /// Cleat the current totals
  29.         void clear();
  30.             /// Get the totals
  31.         const hkStatisticClassCount& getTotalCount() const { return m_totalMemory; }
  32. protected:
  33.         hkBool _isKnown(const void* obj);
  34.         void _addKnown(const void* obj);
  35. void _startObject( const hkClass* cls, const char* fieldName, const void* obj);
  36. void _endObject();
  37.         void _addCumulative(int usedSize, int allocatedSize);
  38.             /// Known objects
  39.         hkPointerMap<const void*, int> m_knownObjects;
  40.         hkStatisticClassCount m_totalMemory;
  41. };
  42. #endif // HK_REPORT_STATISTICS_COLLECTOR_H
  43. /*
  44. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  45. * Confidential Information of Havok.  (C) Copyright 1999-2009
  46. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  47. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  48. * rights, and intellectual property rights in the Havok software remain in
  49. * Havok and/or its suppliers.
  50. * Use of this software for evaluation purposes is subject to and indicates
  51. * acceptance of the End User licence Agreement for this product. A copy of
  52. * the license is included with this software and is also available at www.havok.com/tryhavok.
  53. */