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
use super::*;
pub struct TermDisplay {}
impl TermDisplay {
pub fn new() -> TermDisplay {
TermDisplay {}
}
}
impl Display for TermDisplay {
fn show(&mut self, buffer: &[Column]) -> Result<(), Error> {
print!("{}", termion::clear::All);
for x in 0..buffer.len() {
let col = &buffer[x];
for y in 0..col.len() {
let c = col[y];
let v = if c == 0 { ' ' } else { '#' };
println!("{}{}", termion::cursor::Goto(x as u16 + 1, y as u16 + 1), v);
}
}
Ok(())
}
}