2021-12-11 12:03:13 +01:00
pub mod cell ;
pub mod direction ;
pub mod position ;
pub use direction ::* ;
2021-12-20 15:31:46 +01:00
use itertools ::{ join , Itertools , MinMaxResult } ;
2021-12-11 22:54:57 +01:00
pub use position ::* ;
2021-12-11 12:03:13 +01:00
use std ::{ collections ::HashMap , fmt ::Display , hash ::BuildHasher } ;
2021-12-11 22:54:57 +01:00
#[ allow(clippy::len_without_is_empty) ] // I mainly have this for assertions in benchmarks
pub trait Grid < T , const D : usize > {
fn get ( & self , pos : & PositionND < D > ) -> Option < & T > ;
fn insert < Pos : Into < PositionND < D > > > ( & mut self , pos : Pos , element : T ) ;
fn len ( & self ) -> usize ;
}
2021-12-11 12:03:13 +01:00
#[ derive(Debug, Clone, PartialEq) ]
2021-12-11 22:54:57 +01:00
pub struct HashGrid < T : Default , const D : usize > {
2021-12-11 12:03:13 +01:00
pub fields : HashMap < PositionND < D > , T > ,
}
2021-12-11 22:54:57 +01:00
impl < T : Default , const D : usize > Grid < T , D > for HashGrid < T , D > {
fn get ( & self , pos : & PositionND < D > ) -> Option < & T > {
self . fields . get ( pos )
2021-12-11 12:03:13 +01:00
}
2021-12-11 22:54:57 +01:00
fn insert < Pos : Into < PositionND < D > > > ( & mut self , pos : Pos , t : T ) {
2021-12-11 12:03:13 +01:00
self . fields . insert ( pos . into ( ) , t ) ;
}
2021-12-11 13:07:08 +01:00
2021-12-11 22:54:57 +01:00
fn len ( & self ) -> usize {
self . fields . len ( )
}
}
2021-12-20 15:31:46 +01:00
impl < T : Default + Copy > HashGrid < T , 2 > {
2021-12-11 22:54:57 +01:00
pub fn from_bytes_2d < F : FnMut ( u8 ) -> T + Copy > ( raw : & str , mut f : F ) -> HashGrid < T , 2 > {
2021-12-11 13:07:08 +01:00
raw . lines ( )
. enumerate ( )
. flat_map ( move | ( y , l ) | l . bytes ( ) . enumerate ( ) . map ( move | ( x , c ) | ( PositionND { points : [ x as i64 , y as i64 ] } , f ( c ) ) ) )
. collect ( )
}
2021-12-11 12:03:13 +01:00
}
2021-12-11 22:54:57 +01:00
impl < T : Default , const D : usize > std ::iter ::FromIterator < ( PositionND < D > , T ) > for HashGrid < T , D > {
2021-12-11 12:03:13 +01:00
fn from_iter < I : IntoIterator < Item = ( PositionND < D > , T ) > > ( iter : I ) -> Self {
2021-12-11 22:54:57 +01:00
HashGrid { fields : iter . into_iter ( ) . collect ( ) }
2021-12-11 12:03:13 +01:00
}
}
2021-12-15 16:56:44 +01:00
#[ derive(Debug, Clone, PartialEq) ]
pub struct VecGrid < T > {
pub fields : Vec < Vec < T > > ,
}
impl < T > Grid < T , 2 > for VecGrid < T > {
fn get ( & self , pos : & PositionND < 2 > ) -> Option < & T > {
self . fields . get ( pos . points [ 0 ] as usize ) ? . get ( pos . points [ 1 ] as usize )
}
fn insert < Pos : Into < PositionND < 2 > > > ( & mut self , pos : Pos , element : T ) {
let PositionND { points : [ x , y ] } = pos . into ( ) ;
self . fields [ x as usize ] [ y as usize ] = element ;
}
fn len ( & self ) -> usize {
self . fields . len ( )
}
}
impl < T : Copy > VecGrid < T > {
2021-12-18 18:14:54 +01:00
pub fn from_bytes_2d < F : FnMut ( u8 ) -> T + Copy > ( raw : & str , f : F ) -> VecGrid < T > {
VecGrid { fields : raw . lines ( ) . map ( | l | l . bytes ( ) . map ( f ) . collect ( ) ) . collect ( ) }
2021-12-15 16:56:44 +01:00
}
}
2021-12-20 15:31:46 +01:00
pub struct Boundaries {
pub x_min : i64 ,
pub x_max : i64 ,
pub y_min : i64 ,
pub y_max : i64 ,
2021-12-11 12:03:13 +01:00
}
2021-12-20 15:31:46 +01:00
pub fn get_boundaries ( input : & [ & PositionND < 2 > ] ) -> Boundaries {
let ( x_min , x_max ) = match input . iter ( ) . map ( | p | p . points [ 0 ] ) . minmax ( ) {
MinMaxResult ::NoElements = > ( 0 , 0 ) ,
MinMaxResult ::MinMax ( min , max ) = > ( min , max ) ,
MinMaxResult ::OneElement ( x ) = > ( x , x ) ,
} ;
let ( y_min , y_max ) = match input . iter ( ) . map ( | p | p . points [ 1 ] ) . minmax ( ) {
MinMaxResult ::NoElements = > ( 0 , 0 ) ,
MinMaxResult ::MinMax ( min , max ) = > ( min , max ) ,
MinMaxResult ::OneElement ( x ) = > ( x , x ) ,
} ;
2021-12-11 12:03:13 +01:00
Boundaries { x_min , x_max , y_min , y_max }
}
pub fn draw_ascii < T : Display + Default , S : BuildHasher > ( coordinates : & HashMap < PositionND < 2 > , T , S > ) -> String {
let b = get_boundaries ( & coordinates . keys ( ) . collect ::< Vec < _ > > ( ) ) ;
join (
( b . y_min ..= b . y_max ) . rev ( ) . map ( | y | {
( b . x_min ..= b . x_max )
. map ( | x | coordinates . get ( & PositionND { points : [ x , y ] } ) . unwrap_or ( & T ::default ( ) ) . to_string ( ) )
. collect ::< String > ( )
} ) ,
" \n " ,
)
}
#[ cfg(test) ]
mod tests {
use super ::* ;
#[ test ]
fn test_add ( ) {
assert_eq! ( PositionND ::from ( [ 0 , 2 ] ) + PositionND ::from ( [ - 1 , 0 ] ) , [ - 1 , 2 ] . into ( ) ) ;
assert_eq! ( PositionND ::from ( [ 0 , - 1 ] ) + PositionND ::from ( Direction ::Up ) , [ 0 , 0 ] . into ( ) ) ;
}
#[ test ]
fn test_sub ( ) {
assert_eq! ( PositionND ::from ( [ 0 , 2 ] ) - PositionND ::from ( [ - 1 , 0 ] ) , [ 1 , 2 ] . into ( ) ) ;
assert_eq! ( PositionND ::from ( [ 0 , - 1 ] ) - PositionND ::from ( [ 0 , - 1 ] ) , [ 0 , 0 ] . into ( ) ) ;
}
#[ test ]
fn test_mul ( ) {
assert_eq! ( PositionND ::from ( [ 0 , 2 ] ) * 5 , [ 0 , 10 ] . into ( ) ) ;
assert_eq! ( PositionND ::from ( [ 0 , - 1 ] ) * - 2 , [ 0 , 2 ] . into ( ) ) ;
}
}