show/hide this revision's text 4 focus on C

We need to implement a simple state machine in Cor C++.
Is a standard switch statement the best way to go?
We have a current state (state) and a trigger for the transition.


switch(state)
{
  case STATE_1:
     state = DoState1(transition);
     break;
  case STATE_2:
     state = DoState2(transition);
     break;
}
...
DoState2(int transition)
{
   // Do State Work
   ...
   if(transition == FROM_STATE_2) {
     // New state when doing STATE 2 -> STATE 2
   }
   if(transition == FROM_STATE_1) {
    // New State when moving STATE 1 -> STATE 2
   }
   return new_state;
}

Is there a better way for simple state machines

EDIT: For C++, I think the Boost Statechart library might be the way to go. However, it does not help with C. Lets concentrate on the C use case.

show/hide this revision's text 3 modified state machine a bit

We need to implement a simple state machine in C or C++
Is a standard switch statement the best way to go?
We have a current state (state) and a trigger for the transition.


switch(state)
{
  case STATE_1:
     state = DoState1(transition);
     break;
  case STATE_2:
     state = DoState2(transition);
     break;
}
...
DoState2(int transition)
{
   // Do State Work
   ...
   if(transition == FROM_STATE_2) {
     // Do stuff when we're staying in this New state when doing STATE 2 -> STATE 2
   }
   if(transition == FROM_STATE_1) {
    // Do stuff New State when moving STATE 1 -> STATE 2
   }
   return new_state;
}

Is there a better way for simple state machines

show/hide this revision's text 2 edited tags
show/hide this revision's text 1