2016-10-10 00:16:35 +00:00
|
|
|
extern crate termion;
|
|
|
|
|
2016-12-14 06:10:00 +00:00
|
|
|
extern crate chan_signal;
|
|
|
|
|
2016-10-08 23:47:15 +00:00
|
|
|
use ::backend;
|
2017-01-19 21:44:49 +00:00
|
|
|
use chan;
|
2016-10-08 23:47:15 +00:00
|
|
|
use ::event::{Event, Key};
|
2016-12-13 23:05:35 +00:00
|
|
|
use self::termion::color as tcolor;
|
2016-10-24 18:16:56 +00:00
|
|
|
use self::termion::event::Key as TKey;
|
2016-10-10 21:08:07 +00:00
|
|
|
use self::termion::input::TermRead;
|
|
|
|
use self::termion::raw::IntoRawMode;
|
2016-12-13 23:05:35 +00:00
|
|
|
use self::termion::style as tstyle;
|
2016-10-22 00:18:26 +00:00
|
|
|
use std::cell::Cell;
|
|
|
|
use std::collections::BTreeMap;
|
2016-10-28 03:35:34 +00:00
|
|
|
use std::fmt;
|
2016-12-13 23:05:35 +00:00
|
|
|
use std::io::Write;
|
|
|
|
use std::thread;
|
|
|
|
use std::time;
|
2016-10-22 00:18:26 +00:00
|
|
|
|
|
|
|
use ::theme;
|
2016-10-08 23:47:15 +00:00
|
|
|
|
2016-10-10 00:16:35 +00:00
|
|
|
pub struct Concrete {
|
2016-10-08 23:47:15 +00:00
|
|
|
terminal: termion::raw::RawTerminal<::std::io::Stdout>,
|
2016-10-22 00:18:26 +00:00
|
|
|
current_style: Cell<theme::ColorStyle>,
|
2016-12-13 23:05:35 +00:00
|
|
|
colors: BTreeMap<i16, (Box<tcolor::Color>, Box<tcolor::Color>)>,
|
|
|
|
|
2016-12-14 06:10:00 +00:00
|
|
|
input: chan::Receiver<Event>,
|
|
|
|
resize: chan::Receiver<chan_signal::Signal>,
|
|
|
|
timeout: Option<u32>,
|
2016-10-22 00:18:26 +00:00
|
|
|
}
|
|
|
|
|
2016-10-24 18:16:56 +00:00
|
|
|
trait Effectable {
|
|
|
|
fn on(&self);
|
|
|
|
fn off(&self);
|
|
|
|
}
|
|
|
|
|
2016-12-13 23:05:35 +00:00
|
|
|
struct ColorRef<'a>(&'a tcolor::Color);
|
2016-10-28 03:35:34 +00:00
|
|
|
|
2016-12-13 23:05:35 +00:00
|
|
|
impl<'a> tcolor::Color for ColorRef<'a> {
|
2016-10-28 03:35:34 +00:00
|
|
|
#[inline]
|
|
|
|
fn write_fg(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
self.0.write_fg(f)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn write_bg(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
self.0.write_bg(f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-24 18:16:56 +00:00
|
|
|
impl Effectable for theme::Effect {
|
|
|
|
fn on(&self) {
|
|
|
|
match *self {
|
|
|
|
theme::Effect::Simple => (),
|
2016-12-13 23:05:35 +00:00
|
|
|
theme::Effect::Reverse => print!("{}", tstyle::Invert),
|
2016-10-24 18:16:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn off(&self) {
|
|
|
|
match *self {
|
|
|
|
theme::Effect::Simple => (),
|
2016-12-13 23:05:35 +00:00
|
|
|
theme::Effect::Reverse => print!("{}", tstyle::NoInvert),
|
2016-10-24 18:16:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-13 23:05:35 +00:00
|
|
|
fn apply_colors(fg: &tcolor::Color, bg: &tcolor::Color) {
|
|
|
|
print!("{}{}", tcolor::Fg(ColorRef(fg)), tcolor::Bg(ColorRef(bg)));
|
2016-10-22 00:18:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Concrete {
|
|
|
|
fn apply_colorstyle(&self, color_style: theme::ColorStyle) {
|
|
|
|
let (ref fg, ref bg) = self.colors[&color_style.id()];
|
|
|
|
apply_colors(&**fg, &**bg);
|
|
|
|
}
|
2016-10-08 23:47:15 +00:00
|
|
|
}
|
|
|
|
|
2016-10-10 00:16:35 +00:00
|
|
|
impl backend::Backend for Concrete {
|
2016-10-08 23:47:15 +00:00
|
|
|
fn init() -> Self {
|
|
|
|
print!("{}", termion::cursor::Hide);
|
2016-12-14 06:10:00 +00:00
|
|
|
|
|
|
|
let resize = chan_signal::notify(&[chan_signal::Signal::WINCH]);
|
|
|
|
|
2016-12-13 23:05:35 +00:00
|
|
|
let terminal = ::std::io::stdout().into_raw_mode().unwrap();
|
2016-12-14 06:10:00 +00:00
|
|
|
let (sender, receiver) = chan::async();
|
2016-12-13 23:05:35 +00:00
|
|
|
|
2017-01-19 21:44:49 +00:00
|
|
|
thread::spawn(move || for key in ::std::io::stdin().keys() {
|
|
|
|
if let Ok(key) = key {
|
|
|
|
sender.send(map_key(key))
|
2016-12-13 23:05:35 +00:00
|
|
|
}
|
|
|
|
});
|
2016-10-08 23:47:15 +00:00
|
|
|
|
2016-10-10 00:16:35 +00:00
|
|
|
let backend = Concrete {
|
2016-12-13 23:05:35 +00:00
|
|
|
terminal: terminal,
|
2016-10-22 00:18:26 +00:00
|
|
|
current_style: Cell::new(theme::ColorStyle::Background),
|
|
|
|
colors: BTreeMap::new(),
|
2016-12-13 23:05:35 +00:00
|
|
|
input: receiver,
|
2016-12-14 06:10:00 +00:00
|
|
|
resize: resize,
|
2016-12-13 23:05:35 +00:00
|
|
|
timeout: None,
|
2016-10-09 23:03:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
backend
|
2016-10-08 23:47:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn finish(&mut self) {
|
|
|
|
print!("{}{}", termion::cursor::Show, termion::cursor::Goto(1, 1));
|
2017-01-19 21:44:49 +00:00
|
|
|
print!("{}[49m{}[39m{}",
|
|
|
|
27 as char,
|
|
|
|
27 as char,
|
|
|
|
termion::clear::All);
|
2016-10-08 23:47:15 +00:00
|
|
|
}
|
|
|
|
|
2016-10-22 00:18:26 +00:00
|
|
|
fn init_color_style(&mut self, style: theme::ColorStyle,
|
|
|
|
foreground: &theme::Color, background: &theme::Color) {
|
|
|
|
// Step 1: convert foreground and background into proper termion Color
|
|
|
|
self.colors.insert(style.id(),
|
|
|
|
(colour_to_termion_colour(foreground),
|
|
|
|
colour_to_termion_colour(background)));
|
2016-10-08 23:47:15 +00:00
|
|
|
}
|
|
|
|
|
2016-10-22 00:18:26 +00:00
|
|
|
fn with_color<F: FnOnce()>(&self, color: theme::ColorStyle, f: F) {
|
|
|
|
let current_style = self.current_style.get();
|
|
|
|
|
|
|
|
self.apply_colorstyle(color);
|
|
|
|
|
|
|
|
self.current_style.set(color);
|
2016-10-08 23:47:15 +00:00
|
|
|
f();
|
2016-10-22 00:18:26 +00:00
|
|
|
self.current_style.set(current_style);
|
|
|
|
|
|
|
|
self.apply_colorstyle(current_style);
|
2016-10-08 23:47:15 +00:00
|
|
|
}
|
|
|
|
|
2016-10-22 00:18:26 +00:00
|
|
|
fn with_effect<F: FnOnce()>(&self, effect: theme::Effect, f: F) {
|
2016-10-24 18:16:56 +00:00
|
|
|
effect.on();
|
2016-10-08 23:47:15 +00:00
|
|
|
f();
|
2016-10-24 18:16:56 +00:00
|
|
|
effect.off();
|
2016-10-08 23:47:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn has_colors(&self) -> bool {
|
|
|
|
// TODO: color support detection?
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
|
|
|
fn screen_size(&self) -> (usize, usize) {
|
|
|
|
let (x, y) = termion::terminal_size().unwrap_or((1, 1));
|
|
|
|
(x as usize, y as usize)
|
|
|
|
}
|
|
|
|
|
2016-10-09 23:03:49 +00:00
|
|
|
fn clear(&self) {
|
2016-10-22 00:18:26 +00:00
|
|
|
self.apply_colorstyle(theme::ColorStyle::Background);
|
2016-10-08 23:47:15 +00:00
|
|
|
print!("{}", termion::clear::All);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn refresh(&mut self) {
|
|
|
|
self.terminal.flush().unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn print_at(&self, (x, y): (usize, usize), text: &str) {
|
2017-01-19 21:44:49 +00:00
|
|
|
print!("{}{}",
|
|
|
|
termion::cursor::Goto(1 + x as u16, 1 + y as u16),
|
|
|
|
text);
|
2016-10-08 23:47:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn set_refresh_rate(&mut self, fps: u32) {
|
2016-12-14 06:10:00 +00:00
|
|
|
self.timeout = Some(1000 / fps as u32);
|
2016-10-08 23:47:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn poll_event(&self) -> Event {
|
2016-12-14 06:10:00 +00:00
|
|
|
let input = &self.input;
|
|
|
|
let resize = &self.resize;
|
|
|
|
|
2016-12-13 23:05:35 +00:00
|
|
|
if let Some(timeout) = self.timeout {
|
2016-12-14 06:10:00 +00:00
|
|
|
let timeout = chan::after_ms(timeout);
|
|
|
|
chan_select!{
|
|
|
|
timeout.recv() => return Event::Refresh,
|
|
|
|
resize.recv() => return Event::WindowResize,
|
|
|
|
input.recv() -> input => return input.unwrap(),
|
|
|
|
}
|
2016-10-24 18:16:56 +00:00
|
|
|
} else {
|
2016-12-14 06:10:00 +00:00
|
|
|
chan_select!{
|
|
|
|
resize.recv() => return Event::WindowResize,
|
|
|
|
input.recv() -> input => return input.unwrap(),
|
|
|
|
}
|
2016-10-24 18:16:56 +00:00
|
|
|
}
|
2016-10-08 23:47:15 +00:00
|
|
|
}
|
|
|
|
}
|
2016-10-22 00:18:26 +00:00
|
|
|
|
2016-12-13 23:05:35 +00:00
|
|
|
fn map_key(key: TKey) -> Event {
|
|
|
|
match key {
|
|
|
|
TKey::Esc => Event::Key(Key::Esc),
|
|
|
|
TKey::Backspace => Event::Key(Key::Backspace),
|
|
|
|
TKey::Left => Event::Key(Key::Left),
|
|
|
|
TKey::Right => Event::Key(Key::Right),
|
|
|
|
TKey::Up => Event::Key(Key::Up),
|
|
|
|
TKey::Down => Event::Key(Key::Down),
|
|
|
|
TKey::Home => Event::Key(Key::Home),
|
|
|
|
TKey::End => Event::Key(Key::End),
|
|
|
|
TKey::PageUp => Event::Key(Key::PageUp),
|
|
|
|
TKey::PageDown => Event::Key(Key::PageDown),
|
|
|
|
TKey::Delete => Event::Key(Key::Del),
|
|
|
|
TKey::Insert => Event::Key(Key::Ins),
|
|
|
|
TKey::F(i) if i < 12 => Event::Key(Key::from_f(i)),
|
|
|
|
TKey::F(j) => Event::Unknown(-(j as i32)),
|
|
|
|
TKey::Char('\n') => Event::Key(Key::Enter),
|
|
|
|
TKey::Char('\t') => Event::Key(Key::Tab),
|
|
|
|
TKey::Char(c) => Event::Char(c),
|
|
|
|
TKey::Ctrl('c') => Event::Exit,
|
|
|
|
TKey::Ctrl(c) => Event::CtrlChar(c),
|
|
|
|
TKey::Alt(c) => Event::AltChar(c),
|
|
|
|
_ => Event::Unknown(-1),
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
fn colour_to_termion_colour(clr: &theme::Color) -> Box<tcolor::Color> {
|
2016-10-22 00:18:26 +00:00
|
|
|
match *clr {
|
2016-12-13 23:05:35 +00:00
|
|
|
theme::Color::Dark(theme::BaseColor::Black) => Box::new(tcolor::Black),
|
|
|
|
theme::Color::Dark(theme::BaseColor::Red) => Box::new(tcolor::Red),
|
|
|
|
theme::Color::Dark(theme::BaseColor::Green) => Box::new(tcolor::Green),
|
2016-10-22 00:18:26 +00:00
|
|
|
theme::Color::Dark(theme::BaseColor::Yellow) => {
|
2016-12-13 23:05:35 +00:00
|
|
|
Box::new(tcolor::Yellow)
|
2016-10-22 00:18:26 +00:00
|
|
|
}
|
2016-12-13 23:05:35 +00:00
|
|
|
theme::Color::Dark(theme::BaseColor::Blue) => Box::new(tcolor::Blue),
|
2016-10-22 00:18:26 +00:00
|
|
|
theme::Color::Dark(theme::BaseColor::Magenta) => {
|
2016-12-13 23:05:35 +00:00
|
|
|
Box::new(tcolor::Magenta)
|
2016-10-22 00:18:26 +00:00
|
|
|
}
|
2016-12-13 23:05:35 +00:00
|
|
|
theme::Color::Dark(theme::BaseColor::Cyan) => Box::new(tcolor::Cyan),
|
|
|
|
theme::Color::Dark(theme::BaseColor::White) => Box::new(tcolor::White),
|
2016-10-22 00:18:26 +00:00
|
|
|
|
|
|
|
theme::Color::Light(theme::BaseColor::Black) => {
|
2016-12-13 23:05:35 +00:00
|
|
|
Box::new(tcolor::LightBlack)
|
2016-10-22 00:18:26 +00:00
|
|
|
}
|
|
|
|
theme::Color::Light(theme::BaseColor::Red) => {
|
2016-12-13 23:05:35 +00:00
|
|
|
Box::new(tcolor::LightRed)
|
2016-10-22 00:18:26 +00:00
|
|
|
}
|
|
|
|
theme::Color::Light(theme::BaseColor::Green) => {
|
2016-12-13 23:05:35 +00:00
|
|
|
Box::new(tcolor::LightGreen)
|
2016-10-22 00:18:26 +00:00
|
|
|
}
|
|
|
|
theme::Color::Light(theme::BaseColor::Yellow) => {
|
2016-12-13 23:05:35 +00:00
|
|
|
Box::new(tcolor::LightYellow)
|
2016-10-22 00:18:26 +00:00
|
|
|
}
|
|
|
|
theme::Color::Light(theme::BaseColor::Blue) => {
|
2016-12-13 23:05:35 +00:00
|
|
|
Box::new(tcolor::LightBlue)
|
2016-10-22 00:18:26 +00:00
|
|
|
}
|
|
|
|
theme::Color::Light(theme::BaseColor::Magenta) => {
|
2016-12-13 23:05:35 +00:00
|
|
|
Box::new(tcolor::LightMagenta)
|
2016-10-22 00:18:26 +00:00
|
|
|
}
|
|
|
|
theme::Color::Light(theme::BaseColor::Cyan) => {
|
2016-12-13 23:05:35 +00:00
|
|
|
Box::new(tcolor::LightCyan)
|
2016-10-22 00:18:26 +00:00
|
|
|
}
|
|
|
|
theme::Color::Light(theme::BaseColor::White) => {
|
2016-12-13 23:05:35 +00:00
|
|
|
Box::new(tcolor::LightWhite)
|
2016-10-22 00:18:26 +00:00
|
|
|
}
|
|
|
|
|
2016-12-13 23:05:35 +00:00
|
|
|
theme::Color::Rgb(r, g, b) => Box::new(tcolor::Rgb(r, g, b)),
|
2016-10-22 00:18:26 +00:00
|
|
|
theme::Color::RgbLowRes(r, g, b) => {
|
2016-12-13 23:05:35 +00:00
|
|
|
Box::new(tcolor::AnsiValue::rgb(r, g, b))
|
2016-10-22 00:18:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|