use crate::vol::{ BaseVol, DefaultPosIterator, DefaultVolIterator, IntoPosIterator, IntoVolIterator, ReadVol, SizedVol, WriteVol, }; use serde::{Deserialize, Serialize}; use vek::*; #[derive(Debug, Clone)] pub enum DynaError { OutOfBounds, } /// A volume with dimensions known only at the creation of the object. // V = Voxel // S = Size (replace when const generics are a thing) // M = Metadata #[derive(Debug, Serialize, Deserialize)] pub struct Dyna { vox: Vec, meta: M, pub sz: Vec3, _phantom: std::marker::PhantomData, } impl Clone for Dyna { fn clone(&self) -> Self { Self { vox: self.vox.clone(), meta: self.meta.clone(), sz: self.sz, _phantom: std::marker::PhantomData, } } } impl Dyna { /// Used to transform a voxel position in the volume into its corresponding /// index in the voxel array. #[inline(always)] fn idx_for(sz: Vec3, pos: Vec3) -> Option { if pos.map(|e| e >= 0).reduce_and() && pos.map2(sz, |e, lim| e < lim as i32).reduce_and() { Some(A::idx(pos, sz)) } else { None } } pub fn map_into W>(self, f: F) -> Dyna { let Dyna { vox, meta, sz, _phantom } = self; Dyna { vox: vox.into_iter().map(f).collect(), meta, sz, _phantom, } } } impl BaseVol for Dyna { type Error = DynaError; type Vox = V; } impl SizedVol for Dyna { #[inline(always)] fn lower_bound(&self) -> Vec3 { Vec3::zero() } #[inline(always)] fn upper_bound(&self) -> Vec3 { self.sz.map(|e| e as i32) } } impl<'a, V, M, A: Access> SizedVol for &'a Dyna { #[inline(always)] fn lower_bound(&self) -> Vec3 { (*self).lower_bound() } #[inline(always)] fn upper_bound(&self) -> Vec3 { (*self).upper_bound() } } impl ReadVol for Dyna { #[inline(always)] fn get(&self, pos: Vec3) -> Result<&V, DynaError> { Self::idx_for(self.sz, pos) .and_then(|idx| self.vox.get(idx)) .ok_or(DynaError::OutOfBounds) } } impl WriteVol for Dyna { #[inline(always)] fn set(&mut self, pos: Vec3, vox: Self::Vox) -> Result<(), DynaError> { Self::idx_for(self.sz, pos) .and_then(|idx| self.vox.get_mut(idx)) .map(|old_vox| *old_vox = vox) .ok_or(DynaError::OutOfBounds) } } impl<'a, V, M, A: Access> IntoPosIterator for &'a Dyna { type IntoIter = DefaultPosIterator; fn pos_iter(self, lower_bound: Vec3, upper_bound: Vec3) -> Self::IntoIter { Self::IntoIter::new(lower_bound, upper_bound) } } impl<'a, V, M, A: Access> IntoVolIterator<'a> for &'a Dyna { type IntoIter = DefaultVolIterator<'a, Dyna>; fn vol_iter(self, lower_bound: Vec3, upper_bound: Vec3) -> Self::IntoIter { Self::IntoIter::new(self, lower_bound, upper_bound) } } impl Dyna { /// Create a new `Dyna` with the provided dimensions and all voxels filled /// with duplicates of the provided voxel. pub fn filled(sz: Vec3, vox: V, meta: M) -> Self { Self { vox: vec![vox; sz.product() as usize], meta, sz, _phantom: std::marker::PhantomData, } } /// Get a reference to the internal metadata. pub fn metadata(&self) -> &M { &self.meta } /// Get a mutable reference to the internal metadata. pub fn metadata_mut(&mut self) -> &mut M { &mut self.meta } } pub trait Access { fn idx(pos: Vec3, sz: Vec3) -> usize; } pub struct ColumnAccess; impl Access for ColumnAccess { fn idx(pos: Vec3, sz: Vec3) -> usize { (pos.x * sz.y as i32 * sz.z as i32 + pos.y * sz.z as i32 + pos.z) as usize } }