hkSystemMemoryBlockServer.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_SYSTEM_MEMORY_BLOCK_SERVER_H
  9. #define HK_SYSTEM_MEMORY_BLOCK_SERVER_H
  10. #include <Common/Base/Memory/Memory/FreeList/hkLargeBlockAllocator.h>
  11. class hkSystemMemoryBlockServer:public hkMemoryBlockServer
  12. {
  13. public:
  14. HK_DECLARE_SYSTEM_ALLOCATOR();
  15.     hkSystemMemoryBlockServer(hk_size_t minBlockSize = 0);
  16.     /// implementing hkMemoryBlockServer
  17.     virtual hkBool isSingleBlockServer() { return false; }
  18.     virtual hk_size_t recommendSize(hk_size_t size);
  19.     virtual void* allocate(hk_size_t size,hk_size_t& sizeOut);
  20.     virtual void free(void* data,hk_size_t size);
  21.         /// This implementation can't extend
  22.     virtual hkBool resize(void* data,hk_size_t oldSize,hk_size_t newSize,hk_size_t& sizeOut) { return false; }
  23.         /// Returns the total amount of memory available from this allocator (approx)
  24.         /// Here its just the difference between the limit and whats allocated.
  25.         /// If there is no limit, method will return hkMemoryStatistics::INIFINITE_SIZE
  26.     virtual hk_size_t getTotalAvailableMemory();
  27.         /// Get the memory limit
  28.     virtual hk_size_t getMemoryLimit();
  29.         /// Set the memory limit
  30.     virtual hkBool setMemoryLimit(hk_size_t size);
  31.     virtual void* criticalAlloc(hk_size_t size);
  32.     virtual void criticalFree(void* data,hk_size_t size);
  33.     protected:
  34.         /// The total amount of bytes allocated
  35.     hk_size_t m_allocated;
  36.         /// The memory limit
  37.     hk_size_t m_memoryLimit;
  38. };
  39. #endif // HK_SYSTEM_MEMORY_BLOCK_SERVER_H
  40. /*
  41. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  42. * Confidential Information of Havok.  (C) Copyright 1999-2009
  43. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  44. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  45. * rights, and intellectual property rights in the Havok software remain in
  46. * Havok and/or its suppliers.
  47. * Use of this software for evaluation purposes is subject to and indicates
  48. * acceptance of the End User licence Agreement for this product. A copy of
  49. * the license is included with this software and is also available at www.havok.com/tryhavok.
  50. */