diff options
author | Guillaume Pasquet <guillaume.pasquet@eggplant.io> | 2019-11-13 14:19:45 +0100 |
---|---|---|
committer | Guillaume Pasquet <guillaume.pasquet@eggplant.io> | 2019-11-13 14:19:45 +0100 |
commit | 3fb8f5651144ef21338c09c14cd3db03c6416136 (patch) | |
tree | 49d6390e20700f922c7ad20b02f24284a13da703 /src/main.rs | |
parent | d6bda2f1662c082b98ac5f05ac9acb5838c1db67 (diff) |
Move the player around!
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/src/main.rs b/src/main.rs index 9f5a432..2c9e611 100644 --- a/src/main.rs +++ b/src/main.rs @@ -8,7 +8,7 @@ mod entities; mod world; mod tiling; -use entities::Player; +use entities::{Player, Character, Entity}; use pancurses::{ initscr, endwin, @@ -16,7 +16,7 @@ use pancurses::{ noecho }; use state::State; -use world::{Dungeon}; +use world::{Dungeon, LEFT, RIGHT, UP, DOWN}; fn main() { @@ -50,10 +50,19 @@ fn main() { // get input and execute it match window.getch() { Some(Input::Character('?')) => { window.addstr("q: quit\n"); }, - Some(Input::Character('j')) => { window.addstr("down\n"); }, - Some(Input::Character('k')) => { window.addstr("up\n"); }, - Some(Input::Character('h')) => { window.addstr("left\n"); }, - Some(Input::Character('l')) => { window.addstr("right\n"); }, + Some(Input::Character('j')) => { + state.player.move_by(DOWN).unwrap(); + // state.get_player_mut().move_by(DOWN).unwrap(); + }, + Some(Input::Character('k')) => { + state.get_player_mut().move_by(UP).unwrap(); + }, + Some(Input::Character('h')) => { + state.get_player_mut().move_by(LEFT).unwrap(); + }, + Some(Input::Character('l')) => { + state.get_player_mut().move_by(RIGHT).unwrap(); + }, Some(Input::Character('q')) => break, Some(_) => (), None => (), |