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

其他游戏

开发平台:

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. HK_FORCE_INLINE int hkBitField::getNumWords() const
  9. {
  10. return m_words.getSize();
  11. }
  12. HK_FORCE_INLINE hkUint32 hkBitField::getWord( int wordIndex ) const
  13. {
  14. HK_ASSERT( 0x38a87b3b, wordIndex >= 0 && wordIndex < getNumWords() );
  15. return m_words[wordIndex];
  16. }
  17. HK_FORCE_INLINE void hkBitField::assignAll( int value )
  18. {
  19. HK_ASSERT( 0xa59289bb, value >= 0 && value <= 1 );
  20. hkUint32 fill = value ? 0xffffffff : 0;
  21. for( int i = 0; i < getNumWords(); i++ )
  22. {
  23. m_words[i] = fill;
  24. }
  25. }
  26. HK_FORCE_INLINE hkBitField::hkBitField()
  27. : m_words(0),
  28. m_numBits(0)
  29. {
  30. }
  31. HK_FORCE_INLINE hkBitField::hkBitField( int numBits )
  32. : m_words( ( numBits + 31 ) >> 5 ),
  33. m_numBits(numBits)
  34. {
  35. }
  36. HK_FORCE_INLINE hkBitField::hkBitField( int numBits, int initialValue )
  37. : m_words( ( numBits + 31 ) >> 5 ),
  38. m_numBits(numBits)
  39. {
  40. HK_ASSERT( 0xa63ab345, initialValue >= 0 && initialValue <= 1 );
  41. assignAll( initialValue );
  42. }
  43. HK_FORCE_INLINE hkBitField::hkBitField( hkUint32* ptr, int numBits )
  44. :   m_words( ptr, ( numBits + 31 ) >> 5, ( numBits + 31 ) >> 5 ),
  45. m_numBits(numBits)
  46. {
  47. }
  48. inline hkBitField::~hkBitField()
  49. {
  50. }
  51. HK_FORCE_INLINE int hkBitField::getSize() const
  52. {
  53. return m_numBits;
  54. }
  55. HK_FORCE_INLINE int hkBitField::get( int index ) const
  56. {
  57. HK_ASSERT( 0x48d17bd3, index >= 0 && index < getSize() );
  58. int arrayIndex = index >> 5;
  59. return ( ( m_words[arrayIndex] >> ( index & 0x1f ) ) & 1 );
  60. }
  61. HK_FORCE_INLINE void hkBitField::set( int index )
  62. {
  63. HK_ASSERT( 0x48a97bc3, index >= 0 && index < getSize() );
  64. int arrayIndex = index >> 5;
  65. m_words[arrayIndex] |= ( 1 << ( index & 0x1f ) );
  66. }
  67. HK_FORCE_INLINE void hkBitField::clear( int index )
  68. {
  69. HK_ASSERT( 0x38a87bb3, index >= 0 && index < getSize() );
  70. int arrayIndex = index >> 5;
  71. m_words[arrayIndex] &= ~( 1 << ( index & 0x1f ) );
  72. }
  73. HK_FORCE_INLINE void hkBitField::assign( int index, int value )
  74. {
  75. HK_ASSERT( 0x48a27b13, index >= 0 && index < getSize() );
  76. HK_ASSERT( 0xe68bb345, value >= 0 && value <= 1 );
  77. int arrayIndex = index >> 5;
  78. hkUint32 mask = 1 << (index & 0x1f);
  79. m_words[arrayIndex] = ( m_words[arrayIndex] & ~mask ) | ( mask & ~( value - 1 ) );
  80. }
  81. HK_FORCE_INLINE void hkBitField::operator = ( const hkBitField& bitField )
  82. {
  83. m_words = bitField.m_words;
  84. m_numBits = bitField.m_numBits;
  85. }
  86. HK_FORCE_INLINE hkBitField::hkBitField( hkFinishLoadedObjectFlag flag ) : m_words(flag)
  87. {
  88. }
  89. /*
  90. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  91. * Confidential Information of Havok.  (C) Copyright 1999-2009
  92. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  93. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  94. * rights, and intellectual property rights in the Havok software remain in
  95. * Havok and/or its suppliers.
  96. * Use of this software for evaluation purposes is subject to and indicates
  97. * acceptance of the End User licence Agreement for this product. A copy of
  98. * the license is included with this software and is also available at www.havok.com/tryhavok.
  99. */