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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
use {Input, Motion};
#[derive(Copy, Clone, RustcDecodable, RustcEncodable, PartialEq, Eq, Debug, Hash)]
pub struct ControllerButton {
pub id: i32,
pub button: u8,
}
impl ControllerButton {
pub fn new(id: i32, button: u8) -> Self {
ControllerButton {
id: id,
button: button,
}
}
}
#[derive(Copy, Clone, RustcDecodable, RustcEncodable, PartialEq, Debug)]
pub struct ControllerAxisArgs {
pub id: i32,
pub axis: u8,
pub position: f64,
}
impl ControllerAxisArgs {
pub fn new(id: i32, axis: u8, position: f64) -> Self {
ControllerAxisArgs {
id: id,
axis: axis,
position: position,
}
}
}
pub trait ControllerAxisEvent: Sized {
fn from_controller_axis_args(args: ControllerAxisArgs, old_event: &Self) -> Option<Self>;
fn controller_axis<U, F>(&self, f: F) -> Option<U> where F: FnMut(ControllerAxisArgs) -> U;
fn controller_axis_args(&self) -> Option<ControllerAxisArgs> {
self.controller_axis(|args| args)
}
}
impl ControllerAxisEvent for Input {
fn from_controller_axis_args(args: ControllerAxisArgs, _old_event: &Self) -> Option<Self> {
Some(Input::Move(Motion::ControllerAxis(args)))
}
fn controller_axis<U, F>(&self, mut f: F) -> Option<U>
where F: FnMut(ControllerAxisArgs) -> U
{
match *self {
Input::Move(Motion::ControllerAxis(args)) => Some(f(args)),
_ => None,
}
}
}
#[cfg(test)]
mod controller_axis_tests {
use super::*;
#[test]
fn test_input_controller_axis() {
use super::super::{Input, Motion};
let e = Input::Move(Motion::ControllerAxis(ControllerAxisArgs::new(0, 1, 0.9)));
let a: Option<Input> =
ControllerAxisEvent::from_controller_axis_args(ControllerAxisArgs::new(0, 1, 0.9), &e);
let b: Option<Input> = a.clone()
.unwrap()
.controller_axis(|cnt| {
ControllerAxisEvent::from_controller_axis_args(
ControllerAxisArgs::new(cnt.id, cnt.axis, cnt.position),
a.as_ref().unwrap())
})
.unwrap();
assert_eq!(a, b);
}
}