Allows an object to alter its behavior when its internal state changes. The object will appear to change its class.
KA: Objects For States
(You remember these, right?)
public enum State {
START,TWO,THREE,ERROR;
}
public class StateMachine {
State state = START;
public void doA(){
if(state==START){
state=TWO;
}else if(state==TWO){
state=ERROR;
}else if(state==THREE){
state=ERROR;
}
}
//public void doB()
//public void doC()
//public void doD()
}
What happens when we need to make a change to the state machine?
public interface State {
public void doA();
public void doB();
public void doC();
public void doD();
}
public class StartState implements State{
public StartState(StateMachine machine){
// initialize things...
}
public void doA(){ machine.state=machine.getStateTwo(); }
public void doB(){ machine.state=machine.getErrorState(); }
public void doC(){ machine.state=machine.getErrorState(); }
public void doD(){ machine.state=machine.getErrorState(); }
}
public class StateMachine{
State start = new StartState(this);
//... initialize other states
State state = start; // initial state
public void doA(){state.doA()};
public void doB(){state.doB()};
public void doC(){state.doC()};
public void doD(){state.doD()};
}
public class StateMachine{
State state = START;
F<Unit,State>[Input][State] fsm = // wut?
public void nextInput(Input i){
// Use current state and input to look up
// a function which will perform the transition
F<Unit,State> f = fsm[i][state];
// apply the function for the new state
state = f();
}
}
fsm[START][A]= {
// do some side effects, print messages, get crazy
return TWO;
}
fsm[TWO][B]= {
// do some side effects, print messages, get crazy
return THREE;
}