extern crate specs;
use std::rc::Rc;
use std::cell::RefCell;
pub enum Transition {
Switch(Rc<RefCell<State>>),
Push(Rc<RefCell<State>>),
Quit,
Pop,
}
pub trait State {
fn run(&mut self) -> Transition;
}
pub struct Engine {
states: Vec<Rc<RefCell<State>>>,
}
impl Engine {
pub fn new() -> Self {
Self {
states: Vec::new()
}
}
pub fn push_state(&mut self, state: Rc<RefCell<State>>) {
self.states.push(state);
}
pub fn run(mut self) {
loop {
if self.states.len() == 0 { return; }
let state_cell = self.states[self.states.len()-1].clone();
let mut state = state_cell.borrow_mut();
match state.run() {
Transition::Switch(new_state) => {
self.states.pop();
self.states.push(new_state);
},
Transition::Pop => {
self.states.pop();
},
Transition::Quit => {
return;
},
Transition::Push(new_state) => {
self.states.push(new_state);
}
}
}
}
}
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
}
}