hkaChunkCache.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_CHUNK_CACHE
  9. #define HK_CHUNK_CACHE
  10. #include <Common/Base/hkBase.h>
  11. /// An interface for cached chunks of data used by the animation playback system.
  12. class hkaChunkCache : public hkReferencedObject
  13. {
  14. public:
  15. /// USeful enums for internal manipulation
  16. enum  ManipulationType
  17. {
  18. MANIPULATE_RETRIEVE = 0,
  19. MANIPULATE_LOCK,
  20. MANIPULATE_UNLOCK,
  21. MANIPULATE_FLUSH,
  22. MANIPULATE_LOCKWRITE,
  23. MANIPULATE_UNLOCKWRITE,
  24. MANIPULATE_ISLOCKEDWRITE
  25. };
  26. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_ANIM_CACHE);
  27. /// Retrieves a read only pointer to a preallocated/cached chunk ( returns HK_NULL if key not available )
  28. virtual const hkUint8* retrieveChunk( hkUint32 key, hkUint32 chunkSize ) = 0;
  29. /// Allocates a chunk from the cache and binds it to the given key
  30. /// Returns HK_NULL if it can't allocate
  31. virtual hkUint8* allocateChunk( hkUint32 key, hkUint32 chunkSize ) = 0;
  32. /// Marks the chunk associated with the given key as available for reuse / reallocation
  33. virtual hkBool flushKey( hkUint32 key, hkUint32 chunkSize ) = 0;
  34. /// Locks a specific key ( will never be removed from the cache pool until it is unlocked )
  35. virtual hkBool lockKeyForRead( hkUint32 key, hkUint32 chunkSize ) = 0;
  36. /// Unlocks a specific key
  37. virtual hkBool unlockKeyForRead( hkUint32 key, hkUint32 chunkSize ) = 0;
  38. /// Locks a specific key for writing (calls to retrieve are not allowed)
  39. virtual hkBool lockKeyForWrite( hkUint32 key, hkUint32 chunkSize ) = 0;
  40. /// Unlocks a specific key for writing 
  41. virtual hkBool unlockKeyForWrite( hkUint32 key, hkUint32 chunkSize ) = 0;
  42. /// Query if key locked for write (use before calling retrieveChunk) 
  43. virtual hkBool isKeyLockedForWrite( hkUint32 key, hkUint32 chunkSize ) = 0;
  44. /// Critical section enter (if MT-safe)
  45. virtual void enterCriticalSection( ) = 0;
  46. /// Critical section leave (if MT-safe)
  47. virtual void leaveCriticalSection( ) = 0;
  48. /// Writes cache statistics to an output stream
  49. virtual hkBool printCacheStats( class hkOstream* oStream ) const = 0;
  50. };
  51. #endif // HK_CHUNK_CACHE
  52. /*
  53. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  54. * Confidential Information of Havok.  (C) Copyright 1999-2009
  55. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  56. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  57. * rights, and intellectual property rights in the Havok software remain in
  58. * Havok and/or its suppliers.
  59. * Use of this software for evaluation purposes is subject to and indicates
  60. * acceptance of the End User licence Agreement for this product. A copy of
  61. * the license is included with this software and is also available at www.havok.com/tryhavok.
  62. */