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
use derive_new::new;
use winit::Event;
use crate::{BindingTypes, Bindings, InputEvent, InputHandler};
use amethyst_core::{
ecs::{
prelude::{Read, ReadExpect, System, World, Write},
SystemData,
},
shrev::{EventChannel, ReaderId},
SystemDesc,
};
use amethyst_window::ScreenDimensions;
#[cfg(feature = "profiler")]
use thread_profiler::profile_scope;
#[derive(Debug, new)]
pub struct InputSystemDesc<T>
where
T: BindingTypes,
{
bindings: Option<Bindings<T>>,
}
impl<'a, 'b, T> SystemDesc<'a, 'b, InputSystem<T>> for InputSystemDesc<T>
where
T: BindingTypes,
{
fn build(self, world: &mut World) -> InputSystem<T> {
<InputSystem<T> as System<'_>>::SystemData::setup(world);
let reader = world.fetch_mut::<EventChannel<Event>>().register_reader();
if let Some(bindings) = self.bindings.as_ref() {
world.fetch_mut::<InputHandler<T>>().bindings = bindings.clone();
}
InputSystem::new(reader, self.bindings)
}
}
#[derive(Debug)]
pub struct InputSystem<T>
where
T: BindingTypes,
{
reader: ReaderId<Event>,
bindings: Option<Bindings<T>>,
}
impl<T: BindingTypes> InputSystem<T> {
pub fn new(reader: ReaderId<Event>, bindings: Option<Bindings<T>>) -> Self {
InputSystem { reader, bindings }
}
fn process_event(
event: &Event,
handler: &mut InputHandler<T>,
output: &mut EventChannel<InputEvent<T>>,
hidpi: f32,
) {
handler.send_event(event, output, hidpi as f32);
}
}
impl<'a, T: BindingTypes> System<'a> for InputSystem<T> {
type SystemData = (
Read<'a, EventChannel<Event>>,
Write<'a, InputHandler<T>>,
Write<'a, EventChannel<InputEvent<T>>>,
ReadExpect<'a, ScreenDimensions>,
);
fn run(&mut self, (input, mut handler, mut output, screen_dimensions): Self::SystemData) {
#[cfg(feature = "profiler")]
profile_scope!("input_system");
handler.send_frame_begin();
for event in input.read(&mut self.reader) {
Self::process_event(
event,
&mut *handler,
&mut *output,
screen_dimensions.hidpi_factor() as f32,
);
}
}
}