123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- //-----------------------------------------------------------------------------
- // Copyright (c) 2013 GarageGames, LLC
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to
- // deal in the Software without restriction, including without limitation the
- // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
- // sell copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- // IN THE SOFTWARE.
- //-----------------------------------------------------------------------------
- #ifndef _BITVECTOR_H_
- #define _BITVECTOR_H_
- #ifndef _PLATFORM_H_
- #include "platform/platform.h"
- #endif
- /// Manage a vector of bits of arbitrary size.
- class BitVector
- {
- U8* mBits;
- U32 mByteSize;
- U32 mSize;
- static U32 calcByteSize(const U32 numBits);
- public:
- BitVector();
- BitVector(const U32 _size);
- ~BitVector();
- /// @name Size Management
- /// @{
- void setSize(const U32 _size);
- U32 getSize() const;
- U32 getByteSize() const;
- U32 getAllocatedByteSize() const { return mByteSize; }
- const U8* getBits() const { return mBits; }
- U8* getNCBits() { return mBits; }
- /// @}
- bool copy(const BitVector& from);
- /// @name Mutators
- /// Note that bits are specified by index, unlike BitSet32.
- /// @{
- /// Clear all the bits.
- void clear();
- /// Set all the bits.
- void set();
- /// Set the specified bit.
- void set(U32 bit);
- /// Clear the specified bit.
- void clear(U32 bit);
- /// Test that the specified bit is set.
- bool test(U32 bit) const;
- /// @}
- };
- inline BitVector::BitVector()
- {
- mBits = NULL;
- mByteSize = 0;
- mSize = 0;
- }
- inline BitVector::BitVector(const U32 _size)
- {
- mBits = NULL;
- mByteSize = 0;
- mSize = 0;
- setSize(_size);
- }
- inline BitVector::~BitVector()
- {
- delete [] mBits;
- mBits = NULL;
- mByteSize = 0;
- mSize = 0;
- }
- inline U32 BitVector::calcByteSize(const U32 numBits)
- {
- // Make sure that we are 32 bit aligned
- //
- return (((numBits + 0x7) >> 3) + 0x3) & ~0x3;
- }
- inline void BitVector::setSize(const U32 _size)
- {
- if (_size != 0) {
- U32 newSize = calcByteSize(_size);
- if (mByteSize < newSize) {
- delete [] mBits;
- mBits = new U8[newSize];
- mByteSize = newSize;
- }
- } else {
- delete [] mBits;
- mBits = NULL;
- mByteSize = 0;
- }
- mSize = _size;
- }
- inline U32 BitVector::getSize() const
- {
- return mSize;
- }
- inline U32 BitVector::getByteSize() const
- {
- return calcByteSize(mSize);
- }
- inline void BitVector::clear()
- {
- if (mSize != 0)
- dMemset(mBits, 0x00, calcByteSize(mSize));
- }
- inline bool BitVector::copy(const BitVector& from)
- {
- U32 sourceSize = from.getSize();
- if (sourceSize) {
- setSize(sourceSize);
- dMemcpy(mBits, from.getBits(), getByteSize());
- return true;
- }
- return false;
- }
- inline void BitVector::set()
- {
- if (mSize != 0)
- dMemset(mBits, 0xFF, calcByteSize(mSize));
- }
- inline void BitVector::set(U32 bit)
- {
- AssertFatal(bit < mSize, "Error, out of range bit");
- mBits[bit >> 3] |= U8(1 << (bit & 0x7));
- }
- inline void BitVector::clear(U32 bit)
- {
- AssertFatal(bit < mSize, "Error, out of range bit");
- mBits[bit >> 3] &= U8(~(1 << (bit & 0x7)));
- }
- inline bool BitVector::test(U32 bit) const
- {
- AssertFatal(bit < mSize, "Error, out of range bit");
- return (mBits[bit >> 3] & U8(1 << (bit & 0x7))) != 0;
- }
- #endif //_BITVECTOR_H_
|