Tagged Questions
9
votes
2answers
580 views
Type safe(r) bitflags in C++?
While revising some old c++ code, I ran across several bitflags defined as enums.
enum FooFlags
{
FooFlag1 = 1 << 0,
FooFlag2 = 1 << 1,
FooFlag3 = 1 << 2
// etc...
...
2
votes
9answers
77 views
How to use a bitflag on an unsigned int in order to store an additional bool value in it
I use unsigned ints representing a bunch of airplanes in a game. Each plane has two states, flying and grounded. I would like to store this state together with the planes number. What is the "best" ...
2
votes
5answers
101 views
searching bit-field templates (codebooks)
I've got a bunch of 8-bit values in a codebook (about 200 of them).
My program will be generating an 8-bit value in response to input, and I need to find all (or even the first is helpful) of the ...
2
votes
2answers
129 views
What to name an array of flags?
I have a project where lots of the objects hold state by maintaining simple boolean flags. There are lots of these, so I maintain them within a uint32_t and use bit masking. There are now so many ...
2
votes
4answers
578 views
Bitflag enums in C++
Using enums for storing bitflags in C++ is a bit troublesome, since once the enum values are ORed they loose their enum-type, which causes errors without explicit casting.
The accepted answer for ...
1
vote
2answers
345 views
c++ bit flags in opengl shaders (glsl)
What would be the best way to send my bit flag to the fragment shader in order to be able to if() against it?
I have the following bit flag (enum):
uint32_t options;
enum Options {
ON ...
1
vote
2answers
518 views
Simple boolean operators for bit flags
I am attempting to learn more about this to implement in my project.
I currently have got this basically:
unsigned char flags = 0; //8 bits
flags |= 0x2; //apply random flag
if(flags & 0x2) {
...
0
votes
4answers
829 views
Enum bitfield container class
Im trying to write a small class to better understand bit flags in c++. But something isnt working out. It prints the wrong values. Where is the problem? Have I misunderstood how to add flags? Or ...