aboutsummaryrefslogtreecommitdiff
path: root/src/brush.rs
blob: 1a365b16a761aff4cc7086bad99d9846f2a8faa3 (plain)
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
76
77
78
79
use std::fmt;

use crate::bitmap::MapPoint;

#[derive(Debug, Copy, Clone)]
pub enum Brush {
    Line {
        size: u8,
        start: Option<MapPoint>,
        extend: bool,
    },
    Circle {
        size: u8,
    },
    RectSelect {
        start: MapPoint,
        end: MapPoint,
    },
    Fill,
    Custom {
        size: u8,
    },
}

impl Brush {
    pub fn grow(&mut self) {
        match self {
            Brush::Line { ref mut size, .. } => *size += 1,
            Brush::Circle { ref mut size, .. } => *size += 1,
            Brush::Custom { ref mut size, .. } => *size += 1,
            _ => (),
        }
    }

    pub fn shrink(&mut self) {
        match self {
            Brush::Line { ref mut size, .. } => *size = size.saturating_sub(1),
            Brush::Circle { ref mut size, .. } => *size = size.saturating_sub(1),
            Brush::Custom { ref mut size, .. } => *size = size.saturating_sub(1),
            _ => (),
        }
    }

    pub fn new(size: u8) -> Self {
        Brush::Circle { size }
    }

    pub fn line(size: u8, extend: bool) -> Self {
        Brush::Line {
            size,
            start: None,
            extend,
        }
    }

    pub fn is_line(&self) -> bool {
        matches!(self, Self::Line { .. })
    }

    pub fn size(&self) -> Option<u8> {
        match self {
            Brush::Line { size, .. } => Some(size.clone()),
            Brush::Circle { size } => Some(size.clone()),
            _ => None,
        }
    }
}

impl fmt::Display for Brush {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Brush::Line { extend, .. } => write!(f, "LINE{}", if *extend { "+" } else { "" }),
            Brush::Circle { .. } => write!(f, "CIRCLE"),
            Brush::RectSelect { .. } => write!(f, "SELECT"),
            Brush::Fill => write!(f, "FILL"),
            Brush::Custom { .. } => write!(f, "CUSTOM"),
        }
    }
}