Compare commits
3 commits
cc29d5226b
...
43c53555d9
Author | SHA1 | Date | |
---|---|---|---|
43c53555d9 | |||
d89e34115f | |||
e383197483 |
2 changed files with 23 additions and 4 deletions
14
src/main.rs
14
src/main.rs
|
@ -5,6 +5,7 @@ use std::{
|
||||||
io::stdout,
|
io::stdout,
|
||||||
net::{Ipv4Addr, SocketAddr, UdpSocket},
|
net::{Ipv4Addr, SocketAddr, UdpSocket},
|
||||||
num::ParseIntError,
|
num::ParseIntError,
|
||||||
|
path::PathBuf,
|
||||||
str::FromStr,
|
str::FromStr,
|
||||||
thread::sleep,
|
thread::sleep,
|
||||||
time::Duration,
|
time::Duration,
|
||||||
|
@ -12,7 +13,7 @@ use std::{
|
||||||
|
|
||||||
use bracket_color::prelude::{HSV, RGB};
|
use bracket_color::prelude::{HSV, RGB};
|
||||||
use clap::{Parser, Subcommand};
|
use clap::{Parser, Subcommand};
|
||||||
use image::{Pixel, Rgb, RgbImage};
|
use image::{imageops::FilterType, io::Reader as ImageReader, Pixel, Rgb, RgbImage};
|
||||||
use rand::Rng;
|
use rand::Rng;
|
||||||
|
|
||||||
use splink_client::{send_frame, Layout};
|
use splink_client::{send_frame, Layout};
|
||||||
|
@ -81,10 +82,11 @@ impl From<Color> for Rgb<u8> {
|
||||||
enum Action {
|
enum Action {
|
||||||
Rainbow,
|
Rainbow,
|
||||||
Solid { color: Color },
|
Solid { color: Color },
|
||||||
|
Image { path: PathBuf },
|
||||||
Clear,
|
Clear,
|
||||||
}
|
}
|
||||||
|
|
||||||
fn get_frame(layout: Layout, frame: u32) -> RgbImage {
|
fn bling(layout: Layout, frame: u32) -> RgbImage {
|
||||||
#![allow(
|
#![allow(
|
||||||
clippy::cast_precision_loss,
|
clippy::cast_precision_loss,
|
||||||
clippy::cast_lossless,
|
clippy::cast_lossless,
|
||||||
|
@ -190,6 +192,14 @@ fn main() -> anyhow::Result<()> {
|
||||||
let frame_num: u32 = rand::thread_rng().gen();
|
let frame_num: u32 = rand::thread_rng().gen();
|
||||||
send_frame(&socket, layout, frame_num, &image)?;
|
send_frame(&socket, layout, frame_num, &image)?;
|
||||||
}
|
}
|
||||||
|
Action::Image { path } => {
|
||||||
|
let image = ImageReader::open(path)?
|
||||||
|
.decode()?
|
||||||
|
.resize_to_fill(layout.width_px(), layout.height_px(), FilterType::Gaussian)
|
||||||
|
.into_rgb8();
|
||||||
|
let frame_num: u32 = rand::thread_rng().gen();
|
||||||
|
send_frame(&socket, layout, frame_num, &image)?;
|
||||||
|
}
|
||||||
Action::Rainbow => {
|
Action::Rainbow => {
|
||||||
print!("{}", termion::clear::All);
|
print!("{}", termion::clear::All);
|
||||||
|
|
||||||
|
|
|
@ -23,6 +23,9 @@ pub struct Strandifier<'a> {
|
||||||
pixels_remaining: u32,
|
pixels_remaining: u32,
|
||||||
next_x: u32,
|
next_x: u32,
|
||||||
next_y: u32,
|
next_y: u32,
|
||||||
|
|
||||||
|
offset_x: u32,
|
||||||
|
offset_y: u32,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> Strandifier<'a> {
|
impl<'a> Strandifier<'a> {
|
||||||
|
@ -41,7 +44,7 @@ impl<'a> Strandifier<'a> {
|
||||||
image: &'a RgbImage,
|
image: &'a RgbImage,
|
||||||
strand_num: u32,
|
strand_num: u32,
|
||||||
) -> Result<Self, StrandifierError> {
|
) -> Result<Self, StrandifierError> {
|
||||||
if layout.width_px() != image.width() || layout.height_px() != image.height() {
|
if layout.width_px() < image.width() || layout.height_px() < image.height() {
|
||||||
return Err(StrandifierError::WrongDimensions);
|
return Err(StrandifierError::WrongDimensions);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -55,6 +58,9 @@ impl<'a> Strandifier<'a> {
|
||||||
let first_x = panel_x * layout.gang_len;
|
let first_x = panel_x * layout.gang_len;
|
||||||
let first_y = panel_y * layout.num_gangs;
|
let first_y = panel_y * layout.num_gangs;
|
||||||
|
|
||||||
|
let offset_x = (layout.width_px() - image.width()) / 2;
|
||||||
|
let offset_y = (layout.height_px() - image.height()) / 2;
|
||||||
|
|
||||||
Ok(Self {
|
Ok(Self {
|
||||||
layout,
|
layout,
|
||||||
image,
|
image,
|
||||||
|
@ -62,6 +68,9 @@ impl<'a> Strandifier<'a> {
|
||||||
pixels_remaining: layout.strand_len(),
|
pixels_remaining: layout.strand_len(),
|
||||||
next_x: first_x,
|
next_x: first_x,
|
||||||
next_y: first_y,
|
next_y: first_y,
|
||||||
|
|
||||||
|
offset_x,
|
||||||
|
offset_y,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -98,7 +107,7 @@ impl<'a> Iterator for Strandifier<'a> {
|
||||||
}
|
}
|
||||||
self.pixels_remaining -= 1;
|
self.pixels_remaining -= 1;
|
||||||
|
|
||||||
Some(*self.image.get_pixel(x, y))
|
Some(*self.image.get_pixel(x + self.offset_x, y + self.offset_y))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn size_hint(&self) -> (usize, Option<usize>) {
|
fn size_hint(&self) -> (usize, Option<usize>) {
|
||||||
|
|
Loading…
Reference in a new issue