hkFixedMemoryBlockServer.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_FIXED_MEMORY_BLOCK_SERVER_H
  9. #define HK_FIXED_MEMORY_BLOCK_SERVER_H
  10. #include <Common/Base/Memory/Memory/FreeList/hkLargeBlockAllocator.h>
  11. class hkFixedMemoryBlockServer:public hkMemoryBlockServer
  12. {
  13.     public:
  14.         HK_DECLARE_SYSTEM_ALLOCATOR();
  15.         hkFixedMemoryBlockServer();
  16.         /// implementing hkMemoryBlockServer
  17.         virtual hkBool isSingleBlockServer() { return true; }
  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.         virtual hkBool resize(void* data,hk_size_t oldSize,hk_size_t newSize,hk_size_t& sizeOut);
  22.             /// Returns the total amount of memory available from this allocator. In this case that will just be the memory remaining
  23.             /// from the break to the end
  24.         virtual hk_size_t getTotalAvailableMemory();
  25.             /// Get the memory limit
  26.         virtual hk_size_t getMemoryLimit();
  27.             /// Set the memory limit
  28.         virtual hkBool setMemoryLimit(hk_size_t size);
  29.         virtual void* criticalAlloc(hk_size_t size);
  30.         virtual void criticalFree(void* data,hk_size_t size);
  31.             /// Ctor. Give it a block of memory you want it to use. Will automatically align  in ctor - but that means
  32.             /// m_start may not be the start you passed in if it wasn't aligned.
  33.         hkFixedMemoryBlockServer(void* start,hk_size_t size);
  34.             /// Is 16 byte aligned
  35.         char* m_start;
  36.             /// The end address in bytes
  37.         char* m_end;
  38.             /// Where the limit is currently set to
  39.         char* m_limit;
  40.             /// The current break point (the boundary between allocated and unallocated)
  41.         char* m_break;
  42. };
  43. #endif // HK_FIXED_MEMORY_BLOCK_SERVER_H
  44. /*
  45. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  46. * Confidential Information of Havok.  (C) Copyright 1999-2009
  47. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  48. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  49. * rights, and intellectual property rights in the Havok software remain in
  50. * Havok and/or its suppliers.
  51. * Use of this software for evaluation purposes is subject to and indicates
  52. * acceptance of the End User licence Agreement for this product. A copy of
  53. * the license is included with this software and is also available at www.havok.com/tryhavok.
  54. */