hkMallocMemory.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_MALLOC_MEMORY
  9. #define HK_MALLOC_MEMORY
  10. #include <Common/Base/Memory/Memory/hkMemory.h>
  11. /// Simple manager which forwards all calls to malloc and free.
  12. class hkMallocMemory : public hkMemory
  13. {
  14. public:
  15. virtual void allocateChunkBatch(void** blocksOut, int nblocks, int nbytes)
  16. {
  17. for( int i = 0; i < nblocks; ++i )
  18. {
  19. blocksOut[i] = allocateChunk(nbytes, HK_MEMORY_CLASS_ROOT);
  20. }
  21. }
  22. virtual void deallocateChunkBatch(void** blocksOut, int nblocks, int nbytes)
  23. {
  24. for( int i = 0; i < nblocks; ++i )
  25. {
  26. deallocateChunk(blocksOut[i], nbytes, HK_MEMORY_CLASS_ROOT);
  27. }
  28. }
  29. virtual void* allocateChunk(int nbytes, HK_MEMORY_CLASS cl)
  30. {
  31. return hkSystemMalloc(nbytes, 16);
  32. }
  33. virtual void deallocateChunk(void* p, int nbytes, HK_MEMORY_CLASS )
  34. {
  35. if(p)
  36. {
  37. hkSystemFree(p);
  38. }
  39. }
  40. virtual void printStatistics(hkOstream* c)
  41. {
  42. }
  43. virtual void calculateStatistics(hkMemoryStatistics& stats )
  44. {
  45. }
  46. virtual void preAllocateRuntimeBlock(int nbytes, HK_MEMORY_CLASS cl)
  47. {
  48. HK_WARN_ALWAYS(0xaf55ad00, "Not implemented for hkMallocMemory. Doing nothing.");
  49. }
  50. virtual void* allocateRuntimeBlock(int nbytes, HK_MEMORY_CLASS cl)
  51. {
  52. HK_WARN_ALWAYS(0xaf55ad01, "Not implemented for hkMallocMemory. Forwarding to OS.");
  53. void* memory = allocateChunk(nbytes, cl);
  54. return memory;
  55. }
  56. virtual void deallocateRuntimeBlock(void* p, int nbytes, HK_MEMORY_CLASS cl)
  57. {
  58. HK_WARN_ALWAYS(0xaf55ad02, "Not implemented for hkMallocMemory. Forwarding to OS.");
  59. deallocateChunk(p, nbytes, cl);
  60. }
  61. virtual void provideRuntimeBlock(void*, int nbytes, HK_MEMORY_CLASS cl)
  62. {
  63. HK_WARN_ALWAYS(0xaf55ad03, "Not implemented for hkMallocMemory. Doing nothing.");
  64. }
  65. virtual void freeRuntimeBlocks()
  66. {
  67. HK_WARN_ALWAYS(0xaf55ad03, "Not implemented for hkMallocMemory. Doing nothing.");
  68. }
  69. };
  70. #endif // HK_MALLOC_MEMORY
  71. /*
  72. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  73. * Confidential Information of Havok.  (C) Copyright 1999-2009
  74. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  75. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  76. * rights, and intellectual property rights in the Havok software remain in
  77. * Havok and/or its suppliers.
  78. * Use of this software for evaluation purposes is subject to and indicates
  79. * acceptance of the End User licence Agreement for this product. A copy of
  80. * the license is included with this software and is also available at www.havok.com/tryhavok.
  81. */