about summary refs log tree commit diff
path: root/src/types/command.rs
blob: 86f83a12c1814b4cb492a41e25f8453fb9df425d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use super::Direction;
use super::Direction::*;
use termion::event::Key;
use termion::event::Key::Char;

pub enum Command {
    Quit,
    Move(Direction),
}

impl Command {
    pub fn from_key(k: Key) -> Option<Command> {
        use Command::*;
        match k {
            Char('q') => Some(Quit),
            Char('h') | Char('a') | Key::Left => Some(Move(Left)),
            Char('k') | Char('w') | Key::Up => Some(Move(Up)),
            Char('j') | Char('s') | Key::Down => Some(Move(Down)),
            Char('l') | Char('d') | Key::Right => Some(Move(Right)),
            _ => None,
        }
    }
}