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
use winit::keyboard::ModifiersState;

pub struct ShiftState {
    shift: bool,
    ctrl: bool,
    alt: bool,
}

impl ShiftState {
    pub fn new() -> Self {
        Self {
            shift: false,
            ctrl: false,
            alt: false,
        }
    }

    pub fn shift_down(&self) -> bool {
        self.shift
    }

    pub fn ctrl_down(&self) -> bool {
        self.ctrl
    }

    pub fn alt_down(&self) -> bool {
        self.alt
    }

    pub fn shift_only(&self) -> bool {
        self.shift && !self.ctrl && !self.alt
    }

    pub fn ctrl_only(&self) -> bool {
        !self.shift && self.ctrl && !self.alt
    }

    pub fn alt_only(&self) -> bool {
        !self.shift && !self.ctrl && self.alt
    }

    pub fn shift_ctrl(&self) -> bool {
        self.shift && self.ctrl && !self.alt
    }

    pub fn shift_alt(&self) -> bool {
        self.shift && !self.ctrl && self.alt
    }

    pub fn ctrl_alt(&self) -> bool {
        !self.shift && self.ctrl && self.alt
    }

    pub fn shift_ctrl_alt(&self) -> bool {
        self.shift && self.ctrl && self.alt
    }

    pub fn update(&mut self, modifiers: ModifiersState) {
        self.shift = modifiers.shift_key();
        self.ctrl = modifiers.control_key();
        self.alt = modifiers.alt_key();
    }
}

impl Default for ShiftState {
    fn default() -> Self {
        Self::new()
    }
}