Try to add hires mode

This commit is contained in:
Jonathan Turner 2019-07-15 06:38:03 +12:00
parent 1a36f47bcb
commit 8d920baf07

View File

@ -1,6 +1,6 @@
use crossterm::{cursor, terminal, Attribute, RawScreen}; use crossterm::{cursor, terminal, Attribute, RawScreen};
use indexmap::IndexMap; use indexmap::IndexMap;
use nu::{serve_plugin, Args, CommandConfig, Plugin, ShellError, Spanned, Value}; use nu::{serve_plugin, Args, CommandConfig, NamedType, Plugin, ShellError, Spanned, Value};
use pretty_hex::*; use pretty_hex::*;
struct BinaryView; struct BinaryView;
@ -13,24 +13,26 @@ impl BinaryView {
impl Plugin for BinaryView { impl Plugin for BinaryView {
fn config(&mut self) -> Result<CommandConfig, ShellError> { fn config(&mut self) -> Result<CommandConfig, ShellError> {
let mut named = IndexMap::new();
named.insert("hires".to_string(), NamedType::Switch);
Ok(CommandConfig { Ok(CommandConfig {
name: "binaryview".to_string(), name: "binaryview".to_string(),
positional: vec![], positional: vec![],
is_filter: false, is_filter: false,
is_sink: true, is_sink: true,
named: IndexMap::new(), named,
rest_positional: true, rest_positional: true,
}) })
} }
fn sink(&mut self, _args: Args, input: Vec<Spanned<Value>>) { fn sink(&mut self, args: Args, input: Vec<Spanned<Value>>) {
for v in input { for v in input {
match v { match v {
Spanned { Spanned {
item: Value::Binary(b), item: Value::Binary(b),
.. ..
} => { } => {
let _ = view_binary(&b); let _ = view_binary(&b, args.has("hires"));
} }
_ => {} _ => {}
} }
@ -38,58 +40,93 @@ impl Plugin for BinaryView {
} }
} }
fn view_binary(b: &[u8]) -> Result<(), Box<dyn std::error::Error>> { fn view_binary(b: &[u8], hires_mode: bool) -> Result<(), Box<dyn std::error::Error>> {
if b.len() > 3 { if b.len() > 3 {
match (b[0], b[1], b[2]) { match (b[0], b[1], b[2]) {
(0x4e, 0x45, 0x53) => { (0x4e, 0x45, 0x53) => {
view_contents_interactive(b)?; view_contents_interactive(b, hires_mode)?;
return Ok(()); return Ok(());
} }
_ => {} _ => {}
} }
} }
view_contents(b)?; view_contents(b, hires_mode)?;
Ok(()) Ok(())
} }
pub struct Context { pub struct RenderContext {
pub width: usize, pub width: usize,
pub height: usize, pub height: usize,
pub frame_buffer: Vec<(u8, u8, u8)>, pub frame_buffer: Vec<(u8, u8, u8)>,
pub prev_frame_buffer: Option<Vec<(u8, u8, u8)>>,
pub since_last_button: Vec<usize>, pub since_last_button: Vec<usize>,
pub hires_mode: bool,
} }
impl Context { impl RenderContext {
pub fn blank() -> Context { pub fn blank(hires_mode: bool) -> RenderContext {
Context { RenderContext {
width: 0, width: 0,
height: 0, height: 0,
frame_buffer: vec![], frame_buffer: vec![],
prev_frame_buffer: None,
since_last_button: vec![0; 8], since_last_button: vec![0; 8],
hires_mode,
} }
} }
pub fn clear(&mut self) { pub fn clear(&mut self) {
self.frame_buffer = vec![(0, 0, 0); self.width * self.height as usize]; self.frame_buffer = vec![(0, 0, 0); self.width * self.height as usize];
} }
pub fn flush(&mut self) -> Result<(), Box<dyn std::error::Error>> {
fn render_to_screen_lores(&mut self) -> Result<(), Box<dyn std::error::Error>> {
let mut prev_color: Option<(u8, u8, u8)> = None;
let mut prev_count = 1;
let cursor = cursor(); let cursor = cursor();
cursor.goto(0, 0)?; cursor.goto(0, 0)?;
// check if we should redraw for pixel in &self.frame_buffer {
if let Some(ref prev) = self.prev_frame_buffer { match prev_color {
if self.frame_buffer == *prev { Some(c) if c == *pixel => {
return Ok(()); prev_count += 1;
}
Some(c) => {
print!(
"{}",
ansi_term::Colour::RGB(c.0, c.1, c.2)
.paint((0..prev_count).map(|_| "").collect::<String>())
);
prev_color = Some(*pixel);
prev_count = 1;
}
_ => {
prev_color = Some(*pixel);
prev_count = 1;
}
} }
} }
if prev_count > 0 {
if let Some(color) = prev_color {
print!(
"{}",
ansi_term::Colour::RGB(color.0, color.1, color.2)
.paint((0..prev_count).map(|_| "").collect::<String>())
);
}
}
println!("{}", Attribute::Reset);
Ok(())
}
fn render_to_screen_hires(&mut self) -> Result<(), Box<dyn std::error::Error>> {
let mut prev_fg: Option<(u8, u8, u8)> = None; let mut prev_fg: Option<(u8, u8, u8)> = None;
let mut prev_bg: Option<(u8, u8, u8)> = None; let mut prev_bg: Option<(u8, u8, u8)> = None;
let mut prev_count = 1; let mut prev_count = 1;
let mut pos = 0; let mut pos = 0;
let fb_len = self.frame_buffer.len(); let fb_len = self.frame_buffer.len();
let cursor = cursor();
cursor.goto(0, 0)?;
while pos < (fb_len - self.width) { while pos < (fb_len - self.width) {
let top_pixel = self.frame_buffer[pos]; let top_pixel = self.frame_buffer[pos];
let bottom_pixel = self.frame_buffer[pos + self.width]; let bottom_pixel = self.frame_buffer[pos + self.width];
@ -133,44 +170,16 @@ impl Context {
_ => {} _ => {}
} }
} }
self.prev_frame_buffer = Some(self.frame_buffer.clone());
/*
for pixel in &self.frame_buffer {
match prev_color {
Some(c) if c == pixel.1 => {
prev_count += 1;
}
Some(c) => {
print!(
"{}",
ansi_term::Colour::RGB(c.0, c.1, c.2)
.paint((0..prev_count).map(|_| pixel.0).collect::<String>())
);
prev_color = Some(pixel.1);
prev_count = 1;
}
_ => {
prev_color = Some(pixel.1);
prev_count = 1;
}
}
}
if prev_count > 0 {
if let Some(color) = prev_color {
print!(
"{}",
ansi_term::Colour::RGB(color.0, color.1, color.2)
.paint((0..prev_count).map(|_| "").collect::<String>())
);
}
}
*/
println!("{}", Attribute::Reset); println!("{}", Attribute::Reset);
Ok(()) Ok(())
} }
pub fn flush(&mut self) -> Result<(), Box<dyn std::error::Error>> {
if self.hires_mode {
self.render_to_screen_hires()
} else {
self.render_to_screen_lores()
}
}
pub fn update(&mut self) -> Result<(), Box<dyn std::error::Error>> { pub fn update(&mut self) -> Result<(), Box<dyn std::error::Error>> {
let terminal = terminal(); let terminal = terminal();
let terminal_size = terminal.terminal_size(); let terminal_size = terminal.terminal_size();
@ -180,7 +189,11 @@ impl Context {
cursor.hide()?; cursor.hide()?;
self.width = terminal_size.0 as usize + 1; self.width = terminal_size.0 as usize + 1;
self.height = terminal_size.1 as usize * 2; self.height = if self.hires_mode {
terminal_size.1 as usize * 2
} else {
terminal_size.1 as usize
};
} }
Ok(()) Ok(())
@ -234,7 +247,7 @@ fn load_from_jpg_buffer(buffer: &[u8]) -> Option<(RawImageBuffer)> {
}) })
} }
pub fn view_contents(buffer: &[u8]) -> Result<(), Box<dyn std::error::Error>> { pub fn view_contents(buffer: &[u8], hires_mode: bool) -> Result<(), Box<dyn std::error::Error>> {
let mut raw_image_buffer = load_from_png_buffer(buffer); let mut raw_image_buffer = load_from_png_buffer(buffer);
if raw_image_buffer.is_none() { if raw_image_buffer.is_none() {
@ -248,9 +261,9 @@ pub fn view_contents(buffer: &[u8]) -> Result<(), Box<dyn std::error::Error>> {
} }
let raw_image_buffer = raw_image_buffer.unwrap(); let raw_image_buffer = raw_image_buffer.unwrap();
let mut context: Context = Context::blank(); let mut render_context: RenderContext = RenderContext::blank(hires_mode);
let _ = context.update(); let _ = render_context.update();
context.clear(); render_context.clear();
match raw_image_buffer.colortype { match raw_image_buffer.colortype {
image::ColorType::RGBA(8) => { image::ColorType::RGBA(8) => {
@ -263,8 +276,8 @@ pub fn view_contents(buffer: &[u8]) -> Result<(), Box<dyn std::error::Error>> {
let resized_img = image::imageops::resize( let resized_img = image::imageops::resize(
&img, &img,
context.width as u32, render_context.width as u32,
context.height as u32, render_context.height as u32,
image::FilterType::Lanczos3, image::FilterType::Lanczos3,
); );
@ -272,8 +285,7 @@ pub fn view_contents(buffer: &[u8]) -> Result<(), Box<dyn std::error::Error>> {
for pixel in resized_img.pixels() { for pixel in resized_img.pixels() {
use image::Pixel; use image::Pixel;
let rgb = pixel.to_rgb(); let rgb = pixel.to_rgb();
//print!("{}", rgb[0]); render_context.frame_buffer[count] = (rgb[0], rgb[1], rgb[2]);
context.frame_buffer[count] = (rgb[0], rgb[1], rgb[2]);
count += 1; count += 1;
} }
} }
@ -287,8 +299,8 @@ pub fn view_contents(buffer: &[u8]) -> Result<(), Box<dyn std::error::Error>> {
let resized_img = image::imageops::resize( let resized_img = image::imageops::resize(
&img, &img,
context.width as u32, render_context.width as u32,
context.height as u32, render_context.height as u32,
image::FilterType::Lanczos3, image::FilterType::Lanczos3,
); );
@ -297,7 +309,7 @@ pub fn view_contents(buffer: &[u8]) -> Result<(), Box<dyn std::error::Error>> {
use image::Pixel; use image::Pixel;
let rgb = pixel.to_rgb(); let rgb = pixel.to_rgb();
//print!("{}", rgb[0]); //print!("{}", rgb[0]);
context.frame_buffer[count] = (rgb[0], rgb[1], rgb[2]); render_context.frame_buffer[count] = (rgb[0], rgb[1], rgb[2]);
count += 1; count += 1;
} }
} }
@ -308,7 +320,7 @@ pub fn view_contents(buffer: &[u8]) -> Result<(), Box<dyn std::error::Error>> {
} }
} }
context.flush()?; render_context.flush()?;
let cursor = cursor(); let cursor = cursor();
let _ = cursor.show(); let _ = cursor.show();
@ -319,7 +331,10 @@ pub fn view_contents(buffer: &[u8]) -> Result<(), Box<dyn std::error::Error>> {
Ok(()) Ok(())
} }
pub fn view_contents_interactive(buffer: &[u8]) -> Result<(), Box<dyn std::error::Error>> { pub fn view_contents_interactive(
buffer: &[u8],
hires_mode: bool,
) -> Result<(), Box<dyn std::error::Error>> {
use rawkey::{KeyCode, RawKey}; use rawkey::{KeyCode, RawKey};
let mut nes = neso::Nes::new(48000.0); let mut nes = neso::Nes::new(48000.0);
@ -329,7 +344,7 @@ pub fn view_contents_interactive(buffer: &[u8]) -> Result<(), Box<dyn std::error
nes.reset(); nes.reset();
if let Ok(_raw) = RawScreen::into_raw_mode() { if let Ok(_raw) = RawScreen::into_raw_mode() {
let mut context: Context = Context::blank(); let mut render_context: RenderContext = RenderContext::blank(hires_mode);
let input = crossterm::input(); let input = crossterm::input();
let _ = input.read_async(); let _ = input.read_async();
let cursor = cursor(); let cursor = cursor();
@ -348,7 +363,7 @@ pub fn view_contents_interactive(buffer: &[u8]) -> Result<(), Box<dyn std::error
cursor.hide()?; cursor.hide()?;
'gameloop: loop { 'gameloop: loop {
let _ = context.update(); let _ = render_context.update();
nes.step_frame(); nes.step_frame();
let image_buffer = nes.image_buffer(); let image_buffer = nes.image_buffer();
@ -358,22 +373,22 @@ pub fn view_contents_interactive(buffer: &[u8]) -> Result<(), Box<dyn std::error
image::ImageBuffer::<image::Rgba<u8>, &[u8]>::from_raw(256, 240, slice).unwrap(); image::ImageBuffer::<image::Rgba<u8>, &[u8]>::from_raw(256, 240, slice).unwrap();
let resized_img = image::imageops::resize( let resized_img = image::imageops::resize(
&img, &img,
context.width as u32, render_context.width as u32,
context.height as u32, render_context.height as u32,
image::FilterType::Lanczos3, image::FilterType::Lanczos3,
); );
context.clear(); render_context.clear();
let mut count = 0; let mut count = 0;
for pixel in resized_img.pixels() { for pixel in resized_img.pixels() {
use image::Pixel; use image::Pixel;
let rgb = pixel.to_rgb(); let rgb = pixel.to_rgb();
context.frame_buffer[count] = (rgb[0], rgb[1], rgb[2]); render_context.frame_buffer[count] = (rgb[0], rgb[1], rgb[2]);
count += 1; count += 1;
} }
context.flush()?; render_context.flush()?;
if rawkey.is_pressed(rawkey::KeyCode::Escape) { if rawkey.is_pressed(rawkey::KeyCode::Escape) {
break 'gameloop; break 'gameloop;