BitArray
from panda3d.core import BitArray
- class BitArray
Bases:
A dynamic array with an unlimited number of bits.
This is similar to a BitMask, except it appears to contain an infinite number of bits. You can use it very much as you would use a BitMask.
Inheritance diagram
- __init__()
- __init__(param0: BitArray)
- __init__(init_value: int)
- __init__(from: SparseArray)
- clearBit(index: int)
Sets the nth bit off. If n >=
getNumBits()
, this automatically extends the array.
- compareTo(other: BitArray) int
Returns a number less than zero if this
BitArray
sorts before the indicated otherBitArray
, greater than zero if it sorts after, or 0 if they are equivalent. This is based on the same ordering defined by operator <.
- extract(low_bit: int, size: int) int
Returns a word that represents only the indicated range of bits within this
BitArray
, shifted to the least-significant position. size must be <=getNumBitsPerWord()
.
- getBit(index: int) bool
Returns true if the nth bit is set, false if it is cleared. It is valid for n to increase beyond
getNumBits()
, but the return valuegetNumBits()
will always be the same.
- static getClassType() TypeHandle
- getHighestBits() bool
Returns true if the infinite set of bits beyond
getNumBits()
are all on, or false of they are all off.
- getHighestOffBit() int
Returns the index of the highest 0 bit in the array. Returns -1 if there are no 0 bits or if there an infinite number of 1 bits.
- getHighestOnBit() int
Returns the index of the highest 1 bit in the array. Returns -1 if there are no 1 bits or if there an infinite number of 1 bits.
- getLowestOffBit() int
Returns the index of the lowest 0 bit in the array. Returns -1 if there are no 0 bits.
- getLowestOnBit() int
Returns the index of the lowest 1 bit in the array. Returns -1 if there are no 1 bits.
- getNextHigherDifferentBit(low_bit: int) int
Returns the index of the next bit in the array, above low_bit, whose value is different that the value of low_bit. Returns low_bit again if all bits higher than low_bit have the same value.
This can be used to quickly iterate through all of the bits in the array.
- getNumBits() int
Returns the current number of possibly different bits in this array. There are actually an infinite number of bits, but every bit higher than this bit will have the same value, either 0 or 1 (see
getHighestBits()
).This number may grow and/or shrink automatically as needed.
- getNumOffBits() int
Returns the number of bits that are set to 0 in the array. Returns -1 if there are an infinite number of 0 bits.
- getNumOnBits() int
Returns the number of bits that are set to 1 in the array. Returns -1 if there are an infinite number of 1 bits.
- getWord(n: int) MaskType
Returns the nth word in the array. It is valid for n to be greater than
getNumWords()
, but the return value beyondgetNumWords()
will always be the same.
- hasAllOf(low_bit: int, size: int) bool
Returns true if all bits in the indicated range are set, false otherwise.
- hasAnyOf(low_bit: int, size: int) bool
Returns true if any bit in the indicated range is set, false otherwise.
- hasBitsInCommon(other: BitArray) bool
Returns true if this
BitArray
has any “one” bits in common with the other one, false otherwise.This is equivalent to (array & other) != 0, but may be faster.
- output(out: ostream)
Writes the
BitArray
out as a hex number. For aBitArray
, this is always the same asoutputHex()
; it’s too confusing for the output format to change back and forth at runtime.
- outputBinary(out: ostream, spaces_every: int)
Writes the
BitArray
out as a binary number, with spaces every four bits.
- outputHex(out: ostream, spaces_every: int)
Writes the
BitArray
out as a hexadecimal number, with spaces every four digits.
- static range(low_bit: int, size: int) BitArray
Returns a
BitArray
whose size bits, beginning at low_bit, are on.
- setBit(index: int)
Sets the nth bit on. If n >=
getNumBits()
, this automatically extends the array.
- setBitTo(index: int, value: bool)
Sets the nth bit either on or off, according to the indicated bool value.
- setRangeTo(value: bool, low_bit: int, size: int)
Sets the indicated range of bits to either on or off.
- setWord(n: int, value: int)
Replaces the nth word in the array. If n >=
getNumWords()
, this automatically extends the array.