Skip to content
Snippets Groups Projects
Commit 366b06ab authored by Stephen D's avatar Stephen D
Browse files

gif exporting

parent 5e3a8b31
No related branches found
No related tags found
No related merge requests found
...@@ -787,10 +787,12 @@ dependencies = [ ...@@ -787,10 +787,12 @@ dependencies = [
name = "rapidriter-cat" name = "rapidriter-cat"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"anyhow",
"bitvec", "bitvec",
"clap", "clap",
"colored", "colored",
"console", "console",
"gif",
"image", "image",
] ]
......
...@@ -7,10 +7,12 @@ edition = "2021" ...@@ -7,10 +7,12 @@ edition = "2021"
crate-type = ["cdylib", "rlib"] crate-type = ["cdylib", "rlib"]
[dependencies] [dependencies]
anyhow = "1.0.96"
bitvec = "1.0.1" bitvec = "1.0.1"
clap = { version = "4.5.30", features = ["derive"] } clap = { version = "4.5.30", features = ["derive"] }
colored = "3.0.0" colored = "3.0.0"
console = "0.15.10" console = "0.15.10"
gif = "0.13.1"
[build-dependencies] [build-dependencies]
image = "0.25.5" image = "0.25.5"
......
use std::{ use std::{
io::{self, Read}, borrow::Cow,
fs::File,
path::PathBuf,
thread, thread,
time::{Duration, Instant}, time::{Duration, Instant},
}; };
...@@ -9,6 +11,7 @@ use bitvec::{order::Msb0, view::AsBits}; ...@@ -9,6 +11,7 @@ use bitvec::{order::Msb0, view::AsBits};
use clap::Parser; use clap::Parser;
use colored::Colorize; use colored::Colorize;
use console::Term; use console::Term;
use gif::{Encoder, Frame, Repeat};
use rapidriter_cat::next_frame; use rapidriter_cat::next_frame;
const WIDTH: usize = 96; const WIDTH: usize = 96;
...@@ -16,17 +19,59 @@ const HEIGHT: usize = 38; ...@@ -16,17 +19,59 @@ const HEIGHT: usize = 38;
mod arg; mod arg;
fn main() { fn main() -> anyhow::Result<()> {
let args = Args::parse(); let args = Args::parse();
// clear screen if let Some(path) = args.out {
print!("\x1B[2J"); generate_gif(path)?;
if args.interactive {
interactive_mode();
} else { } else {
non_interactive_mode(); // clear screen
print!("\x1B[2J");
if args.interactive {
interactive_mode();
} else {
non_interactive_mode();
}
} }
Ok(())
}
fn generate_gif(path: PathBuf) -> anyhow::Result<()> {
let mut gif = File::create(path)?;
let mut encoder = Encoder::new(
&mut gif,
WIDTH.try_into().unwrap(),
HEIGHT.try_into().unwrap(),
&[0, 0, 0, 0xFF, 0, 0],
)?;
encoder.set_repeat(Repeat::Infinite)?;
let mut frame = [0; 456];
for i in 0..100 {
let done = unsafe { next_frame(i, frame.as_mut_ptr()) } == 1;
let mut exploded_frame = vec![];
for b in frame.as_bits::<Msb0>() {
exploded_frame.push(if *b { 1 } else { 0 });
}
let f = Frame {
delay: 10, // 100 ms, or 10 FPS
width: WIDTH.try_into().unwrap(),
height: HEIGHT.try_into().unwrap(),
buffer: Cow::Borrowed(&*exploded_frame),
..Default::default()
};
encoder.write_frame(&f)?;
if done {
break;
}
}
Ok(())
} }
fn interactive_mode() { fn interactive_mode() {
...@@ -74,12 +119,14 @@ fn non_interactive_mode() { ...@@ -74,12 +119,14 @@ fn non_interactive_mode() {
thread::sleep(target - now); thread::sleep(target - now);
} }
if unsafe { next_frame(i, frame.as_mut_ptr()) } == 1 { let done = unsafe { next_frame(i, frame.as_mut_ptr()) } == 1;
break;
}
draw_frame(&frame); draw_frame(&frame);
println!("Frame: {}", i); println!("Frame: {}", i);
if done {
break;
}
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment