hkBitField.h
上传用户: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. #ifndef HKBASE_HKBITFIELD_H
  9. #define HKBASE_HKBITFIELD_H
  10. extern const hkClass hkBitFieldClass;
  11. /// A fixed size array of bits.  Use this class sparingly, as bit twiddling
  12. /// is not efficient on all platforms.
  13. class hkBitField
  14. {
  15. public:
  16. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_ARRAY, hkBitField );
  17. HK_DECLARE_REFLECTION();
  18. /// Construct a bit field of size 0.
  19. HK_FORCE_INLINE hkBitField();
  20. /// Construct a bit field of size numBits.
  21. HK_FORCE_INLINE hkBitField( int numBits );
  22. /// Construct a bit field of size numBits, and set all the bits
  23. /// to the low bit in the initialValue parameter.
  24. HK_FORCE_INLINE hkBitField( int numBits, int initialValue );
  25. /// Non copying initialization from an memory buffer.
  26. /// Note this does not copy but uses it in place.
  27. /// Care needs to be taken that the data pointer points to is valid for the scope
  28. /// of this bitField. Pointer will not be deallocated on destruction.
  29. HK_FORCE_INLINE hkBitField( hkUint32* ptr, int numBits );
  30. private:
  31. /// Private copy constructor.
  32. hkBitField( const hkBitField& ) { }
  33. public:
  34. /// Destructor.
  35. inline ~hkBitField();
  36. /// Returns (in the lowest bit position) the bit at the given index.
  37. HK_FORCE_INLINE int get( int index ) const;
  38. /// Set the bit at the given index to 1.
  39. HK_FORCE_INLINE void set( int index );
  40. /// Clear the bit at the given index to 0.
  41. HK_FORCE_INLINE void clear( int index );
  42. /// Assign the bit at the given index to the low bit of the value parameter.
  43. HK_FORCE_INLINE void assign( int index, int value );
  44. /// Set all the bits to the given value.
  45. HK_FORCE_INLINE void assignAll( int value );
  46. /// Resize the bit field, new elements initialized with 'value'.
  47. void setSize( int numBits, int fillValue = 0 );
  48. /// Get the number of bits the bit field is set to.
  49. HK_FORCE_INLINE int getSize() const;
  50. /// Get the word given the word index
  51. HK_FORCE_INLINE hkUint32 getWord( int wordIndex ) const;
  52. /// Get number of words in the bitset
  53. HK_FORCE_INLINE int getNumWords() const;
  54. /// Assignment operator.
  55. HK_FORCE_INLINE void operator = ( const hkBitField& bitField );
  56. private:
  57. // an array of words which hold the bits
  58. hkArray<hkUint32> m_words;
  59. // the number of bits the bit field is set to
  60. int m_numBits;
  61. private:
  62. // fill the bits that are beyond m_numBits but within m_numWords
  63. void fillUnusedBits( int fillValue );
  64. public:
  65. inline hkBitField( hkFinishLoadedObjectFlag flag );
  66. };
  67. #include <Common/Base/Container/BitField/hkBitField.inl>
  68. #endif // HKBASE_HKBITFIELD_H
  69. /*
  70. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  71. * Confidential Information of Havok.  (C) Copyright 1999-2009
  72. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  73. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  74. * rights, and intellectual property rights in the Havok software remain in
  75. * Havok and/or its suppliers.
  76. * Use of this software for evaluation purposes is subject to and indicates
  77. * acceptance of the End User licence Agreement for this product. A copy of
  78. * the license is included with this software and is also available at www.havok.com/tryhavok.
  79. */