hkMemoryClassesTable.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_MEMORY_CLASS_TABLE_H
  9. #define HK_MEMORY_CLASS_TABLE_H
  10. struct hkMemoryClassStatistics
  11. {
  12. hk_size_t m_size_in_use;
  13. int m_n_allocates;
  14. int m_n_news;
  15. hk_size_t m_new_size_in_use;
  16. int m_blocks_in_use;
  17. hk_size_t m_max_size_in_use;
  18. void init()
  19. {
  20. m_blocks_in_use = 0;
  21. m_max_size_in_use = 0;
  22. m_n_allocates = 0;
  23. m_n_news = 0;
  24. m_new_size_in_use = 0;
  25. m_size_in_use = 0;
  26. }
  27. void operator += (const hkMemoryClassStatistics& b)
  28. {
  29. this->m_blocks_in_use += b.m_blocks_in_use;
  30. this->m_max_size_in_use += b.m_max_size_in_use;
  31. this->m_n_allocates += b.m_n_allocates;
  32. this->m_n_news += b.m_n_news;
  33. this->m_new_size_in_use += b.m_new_size_in_use;
  34. this->m_size_in_use += b.m_size_in_use;
  35. }
  36. void operator -= (const hkMemoryClassStatistics& b)
  37. {
  38. this->m_blocks_in_use -= b.m_blocks_in_use;
  39. this->m_max_size_in_use -= b.m_max_size_in_use;
  40. this->m_n_allocates -= b.m_n_allocates;
  41. this->m_n_news -= b.m_n_news;
  42. this->m_new_size_in_use -= b.m_new_size_in_use;
  43. this->m_size_in_use -= b.m_size_in_use;
  44. }
  45. };
  46. struct hkMemoryClassInfo
  47. {
  48. hkMemoryClassStatistics m_classStats;
  49. const char* m_name;
  50. int m_parent; //the parent class for this class
  51. int m_numSubClasses; //the number of subclasses
  52. hkMemoryClassInfo(const char* n,int parent)
  53. : m_name(n), m_parent(parent)
  54. {
  55. }
  56. };
  57. extern hkMemoryClassInfo hkMemoryClassesTable[];
  58. #endif //HK_MEMORY_CLASS_TABLE_H
  59. /*
  60. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  61. * Confidential Information of Havok.  (C) Copyright 1999-2009
  62. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  63. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  64. * rights, and intellectual property rights in the Havok software remain in
  65. * Havok and/or its suppliers.
  66. * Use of this software for evaluation purposes is subject to and indicates
  67. * acceptance of the End User licence Agreement for this product. A copy of
  68. * the license is included with this software and is also available at www.havok.com/tryhavok.
  69. */