hkpGroupFilter.inl
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:2k
源码类别:

其他游戏

开发平台:

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. inline int hkpGroupFilter::getNewSystemGroup()
  9. {
  10. return ++m_nextFreeSystemGroup;
  11. }
  12. inline hkUint32 HK_CALL hkpGroupFilter::calcFilterInfo( int layer, int systemGroup, int subSystemId, int subSystemDontCollideWith)
  13. {
  14. HK_ASSERT(0x1902b596,  layer >=0 && layer < 32 );
  15. HK_ASSERT(0x1902b597,  subSystemId  >=0 && subSystemId  < 32 );
  16. HK_ASSERT(0x1902b598,  subSystemDontCollideWith  >=0 && subSystemDontCollideWith  < 32 );
  17. HK_ASSERT(0x5ae6770c,  systemGroup>=0 && systemGroup < 0x10000);
  18. return hkUint32( (subSystemId<<5) | ( subSystemDontCollideWith<<10) | (systemGroup<<16) | layer);
  19. }
  20. int hkpGroupFilter::getLayerFromFilterInfo( hkUint32 filterInfo )
  21. {
  22. return filterInfo & 0x1f;
  23. }
  24. int hkpGroupFilter::setLayer( hkUint32 filterInfo, int newLayer )
  25. {
  26. hkUint32 collisionLayerMask = 0xffffffff - 0x1f;
  27. return newLayer + ( collisionLayerMask & filterInfo);
  28. }
  29. int hkpGroupFilter::getSystemGroupFromFilterInfo( hkUint32 filterInfo )
  30. {
  31. return filterInfo>>16;
  32. }
  33. int hkpGroupFilter::getSubSystemIdFromFilterInfo( hkUint32 filterInfo )
  34. {
  35. return (filterInfo >> 5) & 0x1f;
  36. }
  37. int hkpGroupFilter::getSubSystemDontCollideWithFromFilterInfo( hkUint32 filterInfo )
  38. {
  39. return (filterInfo >> 10) & 0x1f;
  40. }
  41. /*
  42. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  43. * Confidential Information of Havok.  (C) Copyright 1999-2009
  44. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  45. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  46. * rights, and intellectual property rights in the Havok software remain in
  47. * Havok and/or its suppliers.
  48. * Use of this software for evaluation purposes is subject to and indicates
  49. * acceptance of the End User licence Agreement for this product. A copy of
  50. * the license is included with this software and is also available at www.havok.com/tryhavok.
  51. */