1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
use crate::{
    draw_target::DrawTarget, geometry::Dimensions, pixelcolor::PixelColor, primitives::Rectangle,
    Pixel,
};
use core::marker::PhantomData;

/// Color conversion draw target.
///
/// Created by calling [`color_converted`] on any [`DrawTarget`].
/// See the [`color_converted`] method documentation for more information.
///
/// [`color_converted`]: crate::draw_target::DrawTargetExt::color_converted
#[derive(Debug)]
pub struct ColorConverted<'a, T, C> {
    /// The parent draw target.
    parent: &'a mut T,

    /// The input color type.
    color_type: PhantomData<C>,
}

impl<'a, T, C> ColorConverted<'a, T, C>
where
    T: DrawTarget,
    C: PixelColor + Into<T::Color>,
{
    pub(super) fn new(parent: &'a mut T) -> Self {
        Self {
            parent,
            color_type: PhantomData,
        }
    }
}

impl<T, C> DrawTarget for ColorConverted<'_, T, C>
where
    T: DrawTarget,
    C: PixelColor + Into<T::Color>,
{
    type Color = C;
    type Error = T::Error;

    fn draw_iter<I>(&mut self, pixels: I) -> Result<(), Self::Error>
    where
        I: IntoIterator<Item = Pixel<Self::Color>>,
    {
        self.parent
            .draw_iter(pixels.into_iter().map(|Pixel(p, c)| Pixel(p, c.into())))
    }

    fn fill_contiguous<I>(&mut self, area: &Rectangle, colors: I) -> Result<(), Self::Error>
    where
        I: IntoIterator<Item = Self::Color>,
    {
        self.parent
            .fill_contiguous(area, colors.into_iter().map(|c| c.into()))
    }

    fn fill_solid(&mut self, area: &Rectangle, color: Self::Color) -> Result<(), Self::Error> {
        self.parent.fill_solid(area, color.into())
    }

    fn clear(&mut self, color: Self::Color) -> Result<(), Self::Error> {
        self.parent.clear(color.into())
    }
}

impl<T, C> Dimensions for ColorConverted<'_, T, C>
where
    T: DrawTarget,
{
    fn bounding_box(&self) -> Rectangle {
        self.parent.bounding_box()
    }
}