#pragma once #include "types.h" #include // Disable MSVC warnings that we actually handle #ifdef _MSC_VER #pragma warning(push) #pragma warning(disable : 4800) // warning C4800: 'int': forcing value to bool 'true' or 'false' (performance warning) #endif template struct BitField { static_assert(!std::is_same_v || BitCount == 1, "Boolean bitfields should only be 1 bit"); // We have to delete the copy assignment operator otherwise we can't use this class in anonymous structs/unions. BitField& operator=(const BitField& rhs) = delete; ALWAYS_INLINE constexpr BackingDataType GetMask() const { return ((static_cast(~0)) >> (8 * sizeof(BackingDataType) - BitCount)) << BitIndex; } ALWAYS_INLINE operator DataType() const { return GetValue(); } ALWAYS_INLINE BitField& operator=(DataType value) { SetValue(value); return *this; } ALWAYS_INLINE DataType operator++() { DataType value = GetValue() + 1; SetValue(value); return GetValue(); } ALWAYS_INLINE DataType operator++(int) { DataType value = GetValue(); SetValue(value + 1); return value; } ALWAYS_INLINE DataType operator--() { DataType value = GetValue() - 1; SetValue(value); return GetValue(); } ALWAYS_INLINE DataType operator--(int) { DataType value = GetValue(); SetValue(value - 1); return value; } ALWAYS_INLINE BitField& operator+=(DataType rhs) { SetValue(GetValue() + rhs); return *this; } ALWAYS_INLINE BitField& operator-=(DataType rhs) { SetValue(GetValue() - rhs); return *this; } ALWAYS_INLINE BitField& operator*=(DataType rhs) { SetValue(GetValue() * rhs); return *this; } ALWAYS_INLINE BitField& operator/=(DataType rhs) { SetValue(GetValue() / rhs); return *this; } ALWAYS_INLINE BitField& operator&=(DataType rhs) { SetValue(GetValue() & rhs); return *this; } ALWAYS_INLINE BitField& operator|=(DataType rhs) { SetValue(GetValue() | rhs); return *this; } ALWAYS_INLINE BitField& operator^=(DataType rhs) { SetValue(GetValue() ^ rhs); return *this; } ALWAYS_INLINE BitField& operator<<=(DataType rhs) { SetValue(GetValue() << rhs); return *this; } ALWAYS_INLINE BitField& operator>>=(DataType rhs) { SetValue(GetValue() >> rhs); return *this; } ALWAYS_INLINE DataType GetValue() const { if constexpr (std::is_same_v) { return static_cast(!!((data & GetMask()) >> BitIndex)); } else if constexpr (std::is_signed_v) { constexpr int shift = 8 * sizeof(DataType) - BitCount + 1; return (static_cast(data >> BitIndex) << shift) >> shift; } else { return static_cast((data & GetMask()) >> BitIndex); } } ALWAYS_INLINE void SetValue(DataType value) { data = (data & ~GetMask()) | ((static_cast(value) << BitIndex) & GetMask()); } BackingDataType data; }; #ifdef _MSC_VER #pragma warning(pop) #endif