Skip to content

Commit

Permalink
ei: implement ei_touchscreen v2
Browse files Browse the repository at this point in the history
  • Loading branch information
mahkoh committed Nov 28, 2024
1 parent 5d3b8a9 commit 82b416f
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 5 deletions.
1 change: 1 addition & 0 deletions src/ei/ei_ifs/ei_device.rs
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ impl EiDeviceRequestHandler for EiDevice {
seat.touch_motion_at(time, id, x, y);
}
TouchChange::Up => seat.touch_up(time, id),
TouchChange::Cancel => seat.touch_cancel(time, id),
}
}
seat.touch_frame(time);
Expand Down
13 changes: 13 additions & 0 deletions src/ei/ei_ifs/ei_seat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,19 @@ impl EiSeat {
}
}

pub fn handle_touch_cancel(&self, id: u32) {
if self.is_sender() {
return;
}
if let Some(b) = self.touchscreen.get() {
if self.client.versions.ei_touchscreen() >= EiVersion(2) {
b.send_cancel(id);
} else {
b.send_up(id);
}
}
}

pub fn handle_touch_frame(&self, time_usec: u64) {
if self.is_sender() {
return;
Expand Down
21 changes: 18 additions & 3 deletions src/ei/ei_ifs/ei_touchscreen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ use {
utils::clonecell::UnsafeCellCloneSafe,
wire_ei::{
ei_touchscreen::{
ClientDown, ClientMotion, ClientUp, EiTouchscreenRequestHandler, Release,
ServerDown, ServerMotion, ServerUp,
ClientCancel, ClientDown, ClientMotion, ClientUp, EiTouchscreenRequestHandler,
Release, ServerCancel, ServerDown, ServerMotion, ServerUp,
},
EiTouchscreenId,
},
Expand All @@ -33,6 +33,7 @@ pub enum TouchChange {
Down(f32, f32),
Motion(f32, f32),
Up,
Cancel,
}

unsafe impl UnsafeCellCloneSafe for TouchChange {}
Expand Down Expand Up @@ -65,12 +66,22 @@ impl EiTouchscreen {
});
}

pub fn send_cancel(&self, touchid: u32) {
self.client.event(ServerCancel {
self_id: self.id,
touchid,
});
}

fn set_client_event(&self, touchid: u32, event: TouchChange) -> Result<(), EiTouchscreenError> {
match self.device.touch_changes.lock().entry(touchid) {
Entry::Occupied(mut o) => {
use TouchChange::*;
match (o.get(), event) {
(Motion(_, _), Motion(_, _)) | (Down(_, _), Down(_, _)) | (Up, Up) => {
(Motion(_, _), Motion(_, _))
| (Down(_, _), Down(_, _))
| (Up, Up)
| (Cancel, Cancel) => {
o.insert(event);
Ok(())
}
Expand Down Expand Up @@ -104,6 +115,10 @@ impl EiTouchscreenRequestHandler for EiTouchscreen {
fn client_up(&self, req: ClientUp, _slf: &Rc<Self>) -> Result<(), Self::Error> {
self.set_client_event(req.touchid, TouchChange::Up)
}

fn client_cancel(&self, req: ClientCancel, _slf: &Rc<Self>) -> Result<(), Self::Error> {
self.set_client_event(req.touchid, TouchChange::Cancel)
}
}

ei_object_base! {
Expand Down
4 changes: 2 additions & 2 deletions src/ifs/wl_seat/event_handling.rs
Original file line number Diff line number Diff line change
Expand Up @@ -761,9 +761,9 @@ impl WlSeatGlobal {
self.touch_owner.motion(self, time_usec, id, x, y);
}

fn touch_cancel(self: &Rc<Self>, time_usec: u64, id: i32) {
pub fn touch_cancel(self: &Rc<Self>, time_usec: u64, id: i32) {
self.for_each_ei_seat(|ei_seat| {
ei_seat.handle_touch_up(id as _);
ei_seat.handle_touch_cancel(id as _);
});
self.state.for_each_seat_tester(|t| {
t.send_touch_cancel(self.id, time_usec, id);
Expand Down
8 changes: 8 additions & 0 deletions wire-ei/ei_touchscreen.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ request client_up (sender) {
touchid: u32,
}

request client_cancel (sender, since = 2) {
touchid: u32,
}

event destroyed {
serial: u32,
}
Expand All @@ -36,3 +40,7 @@ event server_motion (receiver) {
event server_up (receiver) {
touchid: u32,
}

event server_cancel (receiver, since = 2) {
touchid: u32,
}

0 comments on commit 82b416f

Please sign in to comment.