summaryrefslogtreecommitdiff
path: root/src/client/dashboard.rs
blob: c6e7718d0e0349a4b349d02ac7035f66defb7ad3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
extern crate serde_json;
extern crate termion;

use self::termion::async_stdin;
use self::termion::raw::IntoRawMode;
use std::io::{stdout, BufRead, BufReader, Read, Write};
use std::net::TcpStream;

use crate::mass::Mass;

pub fn client_dashboard(mut buff_r: BufReader<TcpStream>) {
    let stdout = stdout();
    let mut stdout = stdout.lock().into_raw_mode().unwrap();
    let mut stdin = async_stdin();

    loop {
        let mut recv = String::new();
        buff_r.read_line(&mut recv).unwrap();
        let ship: Mass = serde_json::from_str(&recv).unwrap();

        write!(
            stdout,
            "{}{}{:?}",
            termion::clear::All,
            termion::cursor::Goto(1, 1),
            ship
        )
        .unwrap();

        let mut key = String::new();
        stdin.read_to_string(&mut key).unwrap();
        if key.as_str() == "q" {
            break;
        }

        stdout.flush().unwrap();
    }
}