termion/examples/simple.rs

34 lines
832 B
Rust

extern crate libterm;
use libterm::{TermControl, raw_mode, Color, Mode, ReadExt};
use std::io::{Read, Write, stdout, stdin};
fn main() {
let _raw = raw_mode();
let stdout = stdout();
let mut stdout = stdout.lock();
let mut stdin = stdin();
stdout.goto(5, 5).unwrap();
stdout.clear().unwrap();
stdout.mode(Mode::Bold).unwrap();
stdout.write(b"yo, 'q' will exit.").unwrap();
stdout.reset().unwrap();
stdout.flush().unwrap();
stdout.goto(20, 10).unwrap();
let mut bytes = stdin.bytes();
loop {
let b = bytes.next().unwrap().unwrap();
match b {
b'q' => return,
b'c' => stdout.clear(),
b'r' => stdout.color(Color::Rgb(5, 0, 0)),
a => stdout.write(&[a]),
}.unwrap();
stdout.flush().unwrap();
}
}