use super::*;
#[derive(Eq, PartialEq, Clone)]
pub struct PixelVec<T> {
pub resolution: Vec2<usize>,
pub pixels: Vec<T>,
}
impl<Pixel> PixelVec<Pixel> {
#[must_use]
pub fn constructor<Channels>(resolution: Vec2<usize>, _: &Channels) -> Self
where
Pixel: Default + Clone,
{
Self {
resolution,
pixels: vec![Pixel::default(); resolution.area()],
}
}
#[inline]
pub fn get_pixel(&self, position: Vec2<usize>) -> &Pixel
where
Pixel: Sync,
{
&self.pixels[self.compute_pixel_index(position)]
}
#[inline]
pub fn set_pixel(&mut self, position: Vec2<usize>, pixel: Pixel) {
let index = self.compute_pixel_index(position);
self.pixels[index] = pixel;
}
pub fn new(resolution: impl Into<Vec2<usize>>, pixels: Vec<Pixel>) -> Self {
let size = resolution.into();
assert_eq!(
size.area(),
pixels.len(),
"expected {} samples, but vector length is {}",
size.area(),
pixels.len()
);
Self {
resolution: size,
pixels,
}
}
#[inline]
pub fn compute_pixel_index(&self, position: Vec2<usize>) -> usize {
position.flat_index_for_size(self.resolution)
}
}
use crate::image::validate_results::{ValidateResult, ValidationResult};
impl<Px> ValidateResult for PixelVec<Px>
where
Px: ValidateResult,
{
fn validate_result(
&self,
other: &Self,
options: ValidationOptions,
location: impl Fn() -> String,
) -> ValidationResult {
if self.resolution == other.resolution {
self.pixels
.as_slice()
.validate_result(&other.pixels.as_slice(), options, || location() + " > pixels")
} else {
Err(location() + " > resolution")
}
}
}
impl<Px> GetPixel for PixelVec<Px>
where
Px: Clone + Sync,
{
type Pixel = Px;
fn get_pixel(&self, position: Vec2<usize>) -> Self::Pixel {
self.get_pixel(position).clone()
}
}
use std::fmt::*;
impl<T> Debug for PixelVec<T> {
#[inline]
fn fmt(&self, formatter: &mut Formatter<'_>) -> std::fmt::Result {
write!(formatter, "[{}; {}]", std::any::type_name::<T>(), self.pixels.len())
}
}