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
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub enum ControllerDevice {
    A,
    B,
    C,
    D,
}

#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub enum ControllerInput {
    DpadUp(bool),
    DpadDown(bool),
    DpadLeft(bool),
    DpadRight(bool),
    ButtonA(bool),
    ButtonB(bool),
    ButtonC(bool),
    ButtonX(bool),
    ButtonY(bool),
    ButtonZ(bool),
    Start(bool),
    Mode(bool),
}

#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct ControllerEvent {
    pub device: ControllerDevice,
    pub input: ControllerInput,
}

impl ControllerEvent {
    pub fn new(device: ControllerDevice, input: ControllerInput) -> Self {
        Self {
            device,
            input,
        }
    }
}