rust_lum/src/patterns.rs

111 lines
2.4 KiB
Rust
Raw Normal View History

2022-01-27 20:23:02 +01:00
use std::fmt;
2022-01-24 16:17:54 +01:00
2022-01-27 20:23:02 +01:00
#[derive(Clone, Copy, Debug)]
pub struct PixelColor {
2022-01-24 16:17:54 +01:00
pub(crate) red: u8,
pub(crate) green: u8,
pub(crate) blue: u8,
}
2022-01-27 20:23:02 +01:00
impl PixelColor {
fn new() -> Self {
Default::default()
}
}
2022-01-24 16:17:54 +01:00
2022-01-27 20:23:02 +01:00
impl fmt::Display for PixelColor {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "[{},{},{}]", self.red, self.green, self.blue)
}
}
impl Default for PixelColor {
fn default() -> Self {
2022-01-27 20:26:57 +01:00
PixelColor {
red: 0,
green: 0,
blue: 0,
}
2022-01-27 20:23:02 +01:00
}
}
#[derive(Copy, Clone)]
pub struct Strip<const N: usize> {
2022-01-24 16:17:54 +01:00
pub strip: [PixelColor; N],
}
impl<const N: usize> Strip<N> {
pub fn to_array(&self) -> Vec<u8> {
2022-01-27 20:26:57 +01:00
let mut data: Vec<u8> = vec![];
2022-01-24 16:17:54 +01:00
for i in 0..N {
2022-01-27 20:26:57 +01:00
data.append(&mut vec![
self.strip[i].red,
self.strip[i].green,
self.strip[i].blue,
]);
2022-01-24 16:17:54 +01:00
}
data
}
}
2022-01-27 20:23:02 +01:00
impl<const N: usize> Default for Strip<N> {
fn default() -> Self {
2022-01-27 20:26:57 +01:00
Strip {
strip: [PixelColor::new(); N],
}
2022-01-27 20:23:02 +01:00
}
}
pub struct RainbowPattern<const N: usize> {
pub(crate) current_iteration: usize,
2022-01-27 20:26:57 +01:00
pub(crate) max_iteration: Option<usize>,
2022-01-24 16:17:54 +01:00
}
2022-01-27 20:23:02 +01:00
impl<const N: usize> Iterator for RainbowPattern<N> {
type Item = Strip<N>;
fn next(&mut self) -> Option<Self::Item> {
if let Some(nbr_iteration) = self.max_iteration {
if nbr_iteration == self.current_iteration {
2022-01-27 20:26:57 +01:00
return None;
2022-01-27 20:23:02 +01:00
}
}
let mut strip = Strip::default();
let step = 255 / N;
for i in 0..N {
2022-01-27 20:26:57 +01:00
let pos = (i * step + self.current_iteration) as u8;
2022-01-27 20:23:02 +01:00
strip.strip[i] = wheel(pos)
}
2022-01-27 20:26:57 +01:00
self.current_iteration = self.current_iteration + 1;
2022-01-27 20:23:02 +01:00
Some(strip)
}
}
fn wheel(index: u8) -> PixelColor {
let pos = 255 - index;
match pos {
2022-01-27 20:26:57 +01:00
0..=85 => PixelColor {
2022-01-27 20:23:02 +01:00
red: 255 - (pos * 3),
2022-01-27 20:26:57 +01:00
green: 0,
blue: pos * 3,
},
2022-01-27 20:23:02 +01:00
86..=170 => {
let pos = pos - 85;
2022-01-27 20:26:57 +01:00
PixelColor {
2022-01-27 20:23:02 +01:00
red: 0,
2022-01-27 20:26:57 +01:00
green: pos * 3,
blue: 255 - (pos * 3),
}
2022-01-27 20:23:02 +01:00
}
_ => {
let pos = pos - 170;
2022-01-27 20:26:57 +01:00
return PixelColor {
red: pos * 3,
green: 255 - (pos * 3),
blue: 0,
};
2022-01-27 20:23:02 +01:00
}
}
2022-01-27 20:26:57 +01:00
}