hkaDefaultChunkCache.inl
上传用户: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. /*   Hashing function : ( very simple for now )
  9.      h(k) = k mod m   ( m = bucket size )
  10. */
  11. inline hkBool hkaDefaultChunkCache::hashKey( struct hashKeyInfo& info ) 
  12. {
  13. //
  14. // run the key through the hashing function ( each pool has its own modulus value == bucket size )
  15. //
  16. // which cache pool are we dealing with?
  17. for( hkUint32 i = 0; i < m_numberOfCachePools; i++ )
  18. {
  19. if( info.m_chunkSize < m_cachePools[i].m_chunkSize )
  20. {
  21. info.m_cachePool = i;
  22. break;
  23. }
  24. }
  25. if( info.m_cachePool == -1 )
  26. {
  27. // invalid cache pool
  28. // add this request to the list of unavailable chunks
  29. #if defined( HK_CACHE_STATS )
  30. // check if the array already has this chunk
  31. for( hkInt32 i = 0; i < m_unavailableChunks.getSize(); i++ )
  32. {
  33. if( m_unavailableChunks[i].m_chunkSize == info.m_chunkSize )
  34. {
  35. // update frequency
  36. m_unavailableChunks[i].m_frequency++;
  37. return false;
  38. }
  39. }
  40. // pushback a new unavailable chunk
  41. struct unavailableChunk uChunk;
  42. uChunk.m_chunkSize = info.m_chunkSize;
  43. uChunk.m_frequency = 1;
  44. m_unavailableChunks.pushBack( uChunk );
  45. #endif
  46. // warn that chunk size is unavailable (Ps2 gcc doesn't like the static guard variable in HK_WARN_ONCE)
  47. HK_WARN_ONCE( 0x1cc3730c, "No cache pool enabled to deal with chunk size!" );
  48. // failure
  49. return false;
  50. }
  51. // hash the key and store result
  52. info.m_bucket = ( info.m_key % m_cachePools[ info.m_cachePool ].m_buckets );
  53. // success
  54. return true;
  55. }
  56. /*
  57. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  58. * Confidential Information of Havok.  (C) Copyright 1999-2009
  59. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  60. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  61. * rights, and intellectual property rights in the Havok software remain in
  62. * Havok and/or its suppliers.
  63. * Use of this software for evaluation purposes is subject to and indicates
  64. * acceptance of the End User licence Agreement for this product. A copy of
  65. * the license is included with this software and is also available at www.havok.com/tryhavok.
  66. */