-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFiniteStateMachine.cpp
63 lines (52 loc) · 1.65 KB
/
FiniteStateMachine.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
56
57
58
59
60
61
62
63
#include "FiniteStateMachine.h"
//FINITE STATE MACHINE
FiniteStateMachine::FiniteStateMachine(State& current, const String name): name(name) {
currentState = ¤t;
currentState->enter();
stateChangeTime = millis();
}
FiniteStateMachine& FiniteStateMachine::changeState(State& state) {
if (currentState != &state) {
currentState->exit();
Serial.print(name);
Serial.print(F(": changeState: "));
Serial.print(currentState->name);
Serial.print(F(" -> "));
Serial.print(state.name);
boolean differentSuperStates = currentState->superState != state.superState;
if (differentSuperStates && currentState->superState != NULL) {
Serial.print(F(", SUPER: "));
Serial.print(currentState->superState->name);
Serial.print(F(" -> "));
if (state.superState != NULL) {
Serial.print(state.superState->name);
}
Serial.println();
currentState->superState->exit();
} else {
Serial.println();
}
currentState = &state;
if (differentSuperStates && state.superState != NULL) {
currentState->superState->enter();
}
currentState->enter();
stateChangeTime = millis();
}
return *this;
}
//return the current state
State& FiniteStateMachine::getCurrentState() {
return *currentState;
}
//check if state is equal to the currentState
boolean FiniteStateMachine::isInState(State& state) const {
return &state == currentState;
}
boolean FiniteStateMachine::isInState(SuperState& superState) const {
return &superState == currentState->superState;
}
unsigned long FiniteStateMachine::timeInCurrentState() {
return millis() - stateChangeTime;
}
//END FINITE STATE MACHINE