I'm using a state machine, and the code's getting really verbose when testing against a large number of possible states.
enum Mood {
HAPPY, SAD, CALM, SLEEPY, OPTIMISTIC, PENSIVE, ENERGETIC;
}
Is there any way to do this:
if (currentMood == (HAPPY | OPTIMISTIC | ENERGETIC) {}
Instead of this:
if (currentMood == HAPPY || currentMood == OPTIMISTIC || currentMood == ENERGETIC) {}
Or would it be better to stick with integers and flags in this case?
if ((currentMood & (HAPPY | OPTIMISTIC | ENERGETIC)) != 0) {}. Or perhapsif (((1<<currentMood) & ((1<<HAPPY) | (1<<OPTIMISTIC) | (1<<ENERGETIC))) != 0) {}. Guess I'm happy you've got to do it properly. – Tom Hawtin - tackline Jun 8 '11 at 17:25