-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstate_machine.cpp
55 lines (50 loc) · 1.56 KB
/
state_machine.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include <iostream>
#include <array>
enum class State_e
{
UNKNOWN,
STATE1,
STATE2,
STATE3
};
typedef struct
{
const char* name;
void (*before)();
State_e (*state_function)();
void (*after)();
}state_t;
std::array state_table =
{
state_t{"", [](void){},
[](void){return State_e::STATE1;},
[](void){}},
state_t{"state1", [](void){printf("pre:state1\n");},
[](void){printf("state1\n"); return State_e::STATE2;},
[](void){printf("after:state1\n");}},
state_t{"state2", [](void){printf("pre:state2\n");},
[](void){printf("state2\n"); return State_e::STATE3;},
[](void){printf("after:state2\n");}},
state_t{"state3", [](void){printf("pre:state3\n");},
[](void){printf("state3\n"); return State_e::STATE1;},
[](void){printf("after:state3\n"); exit(0);}},
};
int main()
{
static State_e state = State_e::UNKNOWN, prev_state = State_e::UNKNOWN;
while(true)
{
if (prev_state != state)
{
state_table[static_cast<int>(prev_state)].after();
state_table[static_cast<int>(state)].before();
prev_state = state;
printf("state name = %s\n", state_table[static_cast<int>(state)].name);
}
else
{
state = state_table[static_cast<int>(state)].state_function();
}
}
printf("%s\n", state_table[0].name);
}