use super::*; use plotters_backend::DrawingBackend; use std::borrow::Borrow; use std::iter::{once, Once}; use std::marker::PhantomData; use std::ops::Add; /// An empty composable element, which is the start point of an ad-hoc composable element pub struct EmptyElement { coord: Coord, phantom: PhantomData, } impl EmptyElement { pub fn at(coord: Coord) -> Self { Self { coord, phantom: PhantomData, } } } impl Add for EmptyElement where Other: Drawable, for<'a> &'a Other: PointCollection<'a, BackendCoord>, { type Output = BoxedElement; fn add(self, other: Other) -> Self::Output { BoxedElement { offset: self.coord, inner: other, phantom: PhantomData, } } } impl<'a, Coord, DB: DrawingBackend> PointCollection<'a, Coord> for &'a EmptyElement { type Point = &'a Coord; type IntoIter = Once<&'a Coord>; fn point_iter(self) -> Self::IntoIter { once(&self.coord) } } impl Drawable for EmptyElement { fn draw>( &self, _pos: I, _backend: &mut DB, _: (u32, u32), ) -> Result<(), DrawingErrorKind> { Ok(()) } } /// An composed element has only one component pub struct BoxedElement> { inner: A, offset: Coord, phantom: PhantomData, } impl<'b, Coord, DB: DrawingBackend, A: Drawable> PointCollection<'b, Coord> for &'b BoxedElement { type Point = &'b Coord; type IntoIter = Once<&'b Coord>; fn point_iter(self) -> Self::IntoIter { once(&self.offset) } } impl Drawable for BoxedElement where for<'a> &'a A: PointCollection<'a, BackendCoord>, A: Drawable, { fn draw>( &self, mut pos: I, backend: &mut DB, ps: (u32, u32), ) -> Result<(), DrawingErrorKind> { if let Some((x0, y0)) = pos.next() { self.inner.draw( self.inner.point_iter().into_iter().map(|p| { let p = p.borrow(); (p.0 + x0, p.1 + y0) }), backend, ps, )?; } Ok(()) } } impl Add for BoxedElement where My: Drawable, for<'a> &'a My: PointCollection<'a, BackendCoord>, Yours: Drawable, for<'a> &'a Yours: PointCollection<'a, BackendCoord>, { type Output = ComposedElement; fn add(self, yours: Yours) -> Self::Output { ComposedElement { offset: self.offset, first: self.inner, second: yours, phantom: PhantomData, } } } /// The composed element which has at least two components pub struct ComposedElement where A: Drawable, B: Drawable, { first: A, second: B, offset: Coord, phantom: PhantomData, } impl<'b, Coord, DB: DrawingBackend, A, B> PointCollection<'b, Coord> for &'b ComposedElement where A: Drawable, B: Drawable, { type Point = &'b Coord; type IntoIter = Once<&'b Coord>; fn point_iter(self) -> Self::IntoIter { once(&self.offset) } } impl Drawable for ComposedElement where for<'a> &'a A: PointCollection<'a, BackendCoord>, for<'b> &'b B: PointCollection<'b, BackendCoord>, A: Drawable, B: Drawable, { fn draw>( &self, mut pos: I, backend: &mut DB, ps: (u32, u32), ) -> Result<(), DrawingErrorKind> { if let Some((x0, y0)) = pos.next() { self.first.draw( self.first.point_iter().into_iter().map(|p| { let p = p.borrow(); (p.0 + x0, p.1 + y0) }), backend, ps, )?; self.second.draw( self.second.point_iter().into_iter().map(|p| { let p = p.borrow(); (p.0 + x0, p.1 + y0) }), backend, ps, )?; } Ok(()) } } impl Add for ComposedElement where A: Drawable, for<'a> &'a A: PointCollection<'a, BackendCoord>, B: Drawable, for<'a> &'a B: PointCollection<'a, BackendCoord>, C: Drawable, for<'a> &'a C: PointCollection<'a, BackendCoord>, { type Output = ComposedElement>; fn add(self, rhs: C) -> Self::Output { ComposedElement { offset: self.offset, first: self.first, second: ComposedElement { offset: (0, 0), first: self.second, second: rhs, phantom: PhantomData, }, phantom: PhantomData, } } }