2023-05-12 15:58:01 +00:00
|
|
|
use std::{
|
|
|
|
error::Error,
|
|
|
|
time::{Duration, Instant},
|
|
|
|
};
|
2023-06-12 05:07:15 +00:00
|
|
|
|
2023-07-10 22:59:01 +00:00
|
|
|
use ratatui::prelude::*;
|
2023-05-12 15:58:01 +00:00
|
|
|
use termwiz::{input::*, terminal::Terminal as TermwizTerminal};
|
|
|
|
|
|
|
|
use crate::{app::App, ui};
|
|
|
|
|
|
|
|
pub fn run(tick_rate: Duration, enhanced_graphics: bool) -> Result<(), Box<dyn Error>> {
|
|
|
|
let backend = TermwizBackend::new()?;
|
|
|
|
let mut terminal = Terminal::new(backend)?;
|
|
|
|
terminal.hide_cursor()?;
|
|
|
|
|
|
|
|
// create app and run it
|
|
|
|
let app = App::new("Termwiz Demo", enhanced_graphics);
|
|
|
|
let res = run_app(&mut terminal, app, tick_rate);
|
|
|
|
|
|
|
|
terminal.show_cursor()?;
|
|
|
|
terminal.flush()?;
|
|
|
|
|
|
|
|
if let Err(err) = res {
|
2023-05-22 03:46:02 +00:00
|
|
|
println!("{err:?}");
|
2023-05-12 15:58:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run_app(
|
|
|
|
terminal: &mut Terminal<TermwizBackend>,
|
|
|
|
mut app: App,
|
|
|
|
tick_rate: Duration,
|
2023-10-20 19:31:52 +00:00
|
|
|
) -> Result<(), Box<dyn Error>> {
|
2023-05-12 15:58:01 +00:00
|
|
|
let mut last_tick = Instant::now();
|
|
|
|
loop {
|
|
|
|
terminal.draw(|f| ui::draw(f, &mut app))?;
|
|
|
|
|
2023-10-20 19:31:52 +00:00
|
|
|
let timeout = tick_rate.saturating_sub(last_tick.elapsed());
|
|
|
|
if let Some(input) = terminal
|
2023-05-12 15:58:01 +00:00
|
|
|
.backend_mut()
|
|
|
|
.buffered_terminal_mut()
|
|
|
|
.terminal()
|
2023-10-20 19:31:52 +00:00
|
|
|
.poll_input(Some(timeout))?
|
2023-05-12 15:58:01 +00:00
|
|
|
{
|
|
|
|
match input {
|
|
|
|
InputEvent::Key(key_code) => match key_code.key {
|
2023-12-15 03:11:48 +00:00
|
|
|
KeyCode::UpArrow | KeyCode::Char('k') => app.on_up(),
|
|
|
|
KeyCode::DownArrow | KeyCode::Char('j') => app.on_down(),
|
|
|
|
KeyCode::LeftArrow | KeyCode::Char('h') => app.on_left(),
|
|
|
|
KeyCode::RightArrow | KeyCode::Char('l') => app.on_right(),
|
2023-05-12 15:58:01 +00:00
|
|
|
KeyCode::Char(c) => app.on_key(c),
|
|
|
|
_ => {}
|
|
|
|
},
|
|
|
|
InputEvent::Resized { cols, rows } => {
|
|
|
|
terminal
|
|
|
|
.backend_mut()
|
|
|
|
.buffered_terminal_mut()
|
|
|
|
.resize(cols, rows);
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if last_tick.elapsed() >= tick_rate {
|
|
|
|
app.on_tick();
|
|
|
|
last_tick = Instant::now();
|
|
|
|
}
|
|
|
|
if app.should_quit {
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|