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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
use std::sync::{Arc, Mutex};

use {ElementState, MouseButton, MouseScrollDelta, TouchPhase, WindowEvent};
use events::ModifiersState;

use super::DeviceId;
use super::event_loop::EventsLoopSink;
use super::window::WindowStore;

use sctk::reexports::client::Proxy;
use sctk::reexports::client::protocol::wl_pointer::{self, Event as PtrEvent, WlPointer};
use sctk::reexports::client::protocol::wl_seat;
use sctk::reexports::client::protocol::wl_seat::RequestsTrait as SeatRequests;

pub fn implement_pointer(
    seat: &Proxy<wl_seat::WlSeat>,
    sink: Arc<Mutex<EventsLoopSink>>,
    store: Arc<Mutex<WindowStore>>,
    modifiers_tracker: Arc<Mutex<ModifiersState>>,
) -> Proxy<WlPointer> {
    let mut mouse_focus = None;
    let mut axis_buffer = None;
    let mut axis_discrete_buffer = None;
    let mut axis_state = TouchPhase::Ended;

    seat.get_pointer(|pointer| {
        pointer.implement(move |evt, pointer| {
            let mut sink = sink.lock().unwrap();
            let store = store.lock().unwrap();
            match evt {
                PtrEvent::Enter {
                    surface,
                    surface_x,
                    surface_y,
                    ..
                } => {
                    let wid = store.find_wid(&surface);
                    if let Some(wid) = wid {
                        mouse_focus = Some(wid);
                        sink.send_event(
                            WindowEvent::CursorEntered {
                                device_id: ::DeviceId(::platform::DeviceId::Wayland(DeviceId)),
                            },
                            wid,
                        );
                        sink.send_event(
                            WindowEvent::CursorMoved {
                                device_id: ::DeviceId(::platform::DeviceId::Wayland(DeviceId)),
                                position: (surface_x, surface_y).into(),
                                modifiers: modifiers_tracker.lock().unwrap().clone(),
                            },
                            wid,
                        );
                    }
                }
                PtrEvent::Leave { surface, .. } => {
                    mouse_focus = None;
                    let wid = store.find_wid(&surface);
                    if let Some(wid) = wid {
                        sink.send_event(
                            WindowEvent::CursorLeft {
                                device_id: ::DeviceId(::platform::DeviceId::Wayland(DeviceId)),
                            },
                            wid,
                        );
                    }
                }
                PtrEvent::Motion {
                    surface_x,
                    surface_y,
                    ..
                } => {
                    if let Some(wid) = mouse_focus {
                        sink.send_event(
                            WindowEvent::CursorMoved {
                                device_id: ::DeviceId(::platform::DeviceId::Wayland(DeviceId)),
                                position: (surface_x, surface_y).into(),
                                modifiers: modifiers_tracker.lock().unwrap().clone(),
                            },
                            wid,
                        );
                    }
                }
                PtrEvent::Button { button, state, .. } => {
                    if let Some(wid) = mouse_focus {
                        let state = match state {
                            wl_pointer::ButtonState::Pressed => ElementState::Pressed,
                            wl_pointer::ButtonState::Released => ElementState::Released,
                        };
                        let button = match button {
                            0x110 => MouseButton::Left,
                            0x111 => MouseButton::Right,
                            0x112 => MouseButton::Middle,
                            // TODO figure out the translation ?
                            _ => return,
                        };
                        sink.send_event(
                            WindowEvent::MouseInput {
                                device_id: ::DeviceId(::platform::DeviceId::Wayland(DeviceId)),
                                state: state,
                                button: button,
                                modifiers: modifiers_tracker.lock().unwrap().clone(),
                            },
                            wid,
                        );
                    }
                }
                PtrEvent::Axis { axis, value, .. } => {
                    if let Some(wid) = mouse_focus {
                        if pointer.version() < 5 {
                            let (mut x, mut y) = (0.0, 0.0);
                            // old seat compatibility
                            match axis {
                                // wayland vertical sign convention is the inverse of winit
                                wl_pointer::Axis::VerticalScroll => y -= value as f32,
                                wl_pointer::Axis::HorizontalScroll => x += value as f32,
                            }
                            sink.send_event(
                                WindowEvent::MouseWheel {
                                    device_id: ::DeviceId(::platform::DeviceId::Wayland(DeviceId)),
                                    delta: MouseScrollDelta::PixelDelta((x as f64, y as f64).into()),
                                    phase: TouchPhase::Moved,
                                    modifiers: modifiers_tracker.lock().unwrap().clone(),
                                },
                                wid,
                            );
                        } else {
                            let (mut x, mut y) = axis_buffer.unwrap_or((0.0, 0.0));
                            match axis {
                                // wayland vertical sign convention is the inverse of winit
                                wl_pointer::Axis::VerticalScroll => y -= value as f32,
                                wl_pointer::Axis::HorizontalScroll => x += value as f32,
                            }
                            axis_buffer = Some((x, y));
                            axis_state = match axis_state {
                                TouchPhase::Started | TouchPhase::Moved => TouchPhase::Moved,
                                _ => TouchPhase::Started,
                            }
                        }
                    }
                }
                PtrEvent::Frame => {
                    let axis_buffer = axis_buffer.take();
                    let axis_discrete_buffer = axis_discrete_buffer.take();
                    if let Some(wid) = mouse_focus {
                        if let Some((x, y)) = axis_discrete_buffer {
                            sink.send_event(
                                WindowEvent::MouseWheel {
                                    device_id: ::DeviceId(::platform::DeviceId::Wayland(DeviceId)),
                                    delta: MouseScrollDelta::LineDelta(x as f32, y as f32),
                                    phase: axis_state,
                                    modifiers: modifiers_tracker.lock().unwrap().clone(),
                                },
                                wid,
                            );
                        } else if let Some((x, y)) = axis_buffer {
                            sink.send_event(
                                WindowEvent::MouseWheel {
                                    device_id: ::DeviceId(::platform::DeviceId::Wayland(DeviceId)),
                                    delta: MouseScrollDelta::PixelDelta((x as f64, y as f64).into()),
                                    phase: axis_state,
                                    modifiers: modifiers_tracker.lock().unwrap().clone(),
                                },
                                wid,
                            );
                        }
                    }
                }
                PtrEvent::AxisSource { .. } => (),
                PtrEvent::AxisStop { .. } => {
                    axis_state = TouchPhase::Ended;
                }
                PtrEvent::AxisDiscrete { axis, discrete } => {
                    let (mut x, mut y) = axis_discrete_buffer.unwrap_or((0, 0));
                    match axis {
                        // wayland vertical sign convention is the inverse of winit
                        wl_pointer::Axis::VerticalScroll => y -= discrete,
                        wl_pointer::Axis::HorizontalScroll => x += discrete,
                    }
                    axis_discrete_buffer = Some((x, y));
                    axis_state = match axis_state {
                        TouchPhase::Started | TouchPhase::Moved => TouchPhase::Moved,
                        _ => TouchPhase::Started,
                    }
                }
            }
        }, ())
    }).unwrap()
}