diff options
author | Iago Garrido <iago086@gmail.com> | 2019-11-19 23:15:54 +0100 |
---|---|---|
committer | Iago Garrido <iago086@gmail.com> | 2019-11-19 23:15:54 +0100 |
commit | bd87cf7569ace13eb2351fb5fc1a58f01f83f343 (patch) | |
tree | db68666f8375caf1f0e99bf39e45e3c3ca1618cc /src/main.rs | |
parent | 138b22aec818572e88e1cc254301dc4a844784b0 (diff) |
print help in notification zone
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 29 |
1 files changed, 23 insertions, 6 deletions
diff --git a/src/main.rs b/src/main.rs index 0351ffb..82c08b6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -9,16 +9,33 @@ mod tiling; mod world; use crossterm::cursor; -use crossterm::input::{input, InputEvent, KeyEvent}; -use crossterm::screen::{EnterAlternateScreen, LeaveAlternateScreen, RawScreen}; +use crossterm::input::{ + input, + InputEvent, + KeyEvent +}; +use crossterm::screen::{ + EnterAlternateScreen, + LeaveAlternateScreen, + RawScreen +}; use crossterm::terminal; -use crossterm::{execute, Output}; +use crossterm::execute; use entities::Player; use ignore_result::Ignore; use state::State; use std::env; -use std::io::{stdout, Write}; -use world::{Dungeon, DOWN, LEFT, RIGHT, UP}; +use std::io::{ + stdout, + Write +}; +use world::{ + Dungeon, + DOWN, + LEFT, + RIGHT, + UP +}; fn player_name() -> String { match env::var_os("USER") { @@ -59,7 +76,7 @@ fn main() { match event { InputEvent::Keyboard(KeyEvent::Char('q')) => break, InputEvent::Keyboard(KeyEvent::Char('?')) => { - execute!(stdout(), Output("q: quit")).unwrap() + state.ui_help(); } InputEvent::Keyboard(KeyEvent::Char('j')) => state.move_player(DOWN).ignore(), InputEvent::Keyboard(KeyEvent::Char('k')) => state.move_player(UP).ignore(), |