summaryrefslogtreecommitdiffstats
path: root/packages/svgbob/src/buffer/fragment_buffer/direction.rs
blob: 4325db1c32b10469eff09b3c7096f6ffe9bf5f0e (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
use crate::buffer::CellGrid;

#[derive(Debug, Clone, PartialEq, Copy)]
pub enum Direction {
    TopLeft,
    Top,
    TopRight,
    Left,
    Right,
    BottomLeft,
    Bottom,
    BottomRight,
}

impl Direction {
    /// return the opposite direction of self
    pub(crate) fn opposite(&self) -> Self {
        match self {
            Direction::TopLeft => Direction::BottomRight,
            Direction::Top => Direction::Bottom,
            Direction::TopRight => Direction::BottomLeft,
            Direction::Left => Direction::Right,
            Direction::Right => Direction::Left,
            Direction::BottomLeft => Direction::TopRight,
            Direction::Bottom => Direction::Top,
            Direction::BottomRight => Direction::TopLeft,
        }
    }
    /*
    pub(crate) fn any_along_side(&self, tags: &[PolygonTag]) -> bool {
        tags.iter().any(|tag| self.is_along_side(tag))
    }
    /// diamon matches alongside for everything.
    pub(crate) fn is_along_side(&self, tag: &PolygonTag) -> bool {
        if *tag == PolygonTag::DiamondBullet {
            return true;
        }
        match self {
            Direction::TopLeft | Direction::BottomRight => match tag {
                PolygonTag::ArrowTopLeft
                | PolygonTag::ArrowBottomRight
                | PolygonTag::ArrowTop
                | PolygonTag::ArrowBottom => true,
                _ => false,
            },
            Direction::Top | Direction::Bottom => match tag {
                PolygonTag::ArrowTop | PolygonTag::ArrowBottom => true,
                _ => false,
            },
            Direction::TopRight | Direction::BottomLeft => match tag {
                PolygonTag::ArrowTopRight
                | PolygonTag::ArrowBottomLeft
                | PolygonTag::ArrowTop
                | PolygonTag::ArrowBottom => true,
                _ => false,
            },
            Direction::Left | Direction::Right => match tag {
                PolygonTag::ArrowLeft | PolygonTag::ArrowRight => true,
                _ => false,
            },
        }
    }
    */

    /// calculate the threshold length which is the basis
    /// if the arrow and the line is connected
    pub(crate) fn threshold_length(&self) -> f32 {
        match self {
            Direction::TopLeft
            | Direction::TopRight
            | Direction::BottomLeft
            | Direction::BottomRight => CellGrid::diagonal_length(),
            Direction::Left | Direction::Right => CellGrid::width(),
            Direction::Top | Direction::Bottom => CellGrid::height(),
        }
    }
}