mirror of
https://github.com/feschber/lan-mouse.git
synced 2026-03-24 21:50:57 +03:00
Keyboard support + data requests via tcp server
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
use std::net::UdpSocket;
|
||||
use lan_mouse::protocol;
|
||||
use std::{os::unix::prelude::AsRawFd, io::{Write, BufWriter}};
|
||||
use lan_mouse::{protocol::{self, DataRequest}, config::Config};
|
||||
|
||||
use wayland_protocols_wlr::virtual_pointer::v1::client::{
|
||||
zwlr_virtual_pointer_manager_v1::ZwlrVirtualPointerManagerV1 as VpManager,
|
||||
@@ -12,10 +12,12 @@ use wayland_protocols_misc::zwp_virtual_keyboard_v1::client::{
|
||||
};
|
||||
|
||||
use wayland_client::{
|
||||
protocol::{wl_registry, wl_seat, wl_keyboard::KeyState},
|
||||
protocol::{wl_registry, wl_seat, wl_keyboard},
|
||||
Connection, Dispatch, EventQueue, QueueHandle,
|
||||
};
|
||||
|
||||
use tempfile;
|
||||
|
||||
// App State, implements Dispatch event handlers
|
||||
struct App {
|
||||
vpm: Option<VpManager>,
|
||||
@@ -41,6 +43,9 @@ impl Dispatch<wl_registry::WlRegistry, ()> for App {
|
||||
{
|
||||
// println!("[{}] {} (v{})", name, interface, version);
|
||||
match &interface[..] {
|
||||
"wl_keyboard" => {
|
||||
registry.bind::<wl_keyboard::WlKeyboard, _, _>(name, 1, qh, ());
|
||||
}
|
||||
"wl_seat" => {
|
||||
app.seat = Some(registry.bind::<wl_seat::WlSeat, _, _>(name, 1, qh, ()));
|
||||
}
|
||||
@@ -58,6 +63,7 @@ impl Dispatch<wl_registry::WlRegistry, ()> for App {
|
||||
|
||||
// The main function of our program
|
||||
fn main() {
|
||||
let config = Config::new("config.toml").unwrap();
|
||||
// establish connection via environment-provided configuration.
|
||||
let conn = Connection::connect_to_env().unwrap();
|
||||
|
||||
@@ -80,47 +86,43 @@ fn main() {
|
||||
// use roundtrip to process this event synchronously
|
||||
event_queue.roundtrip(&mut app).unwrap();
|
||||
|
||||
let vpm = app.vpm.unwrap();
|
||||
let vkm = app.vkm.unwrap();
|
||||
let seat = app.seat.unwrap();
|
||||
|
||||
let vpm = app.vpm.as_ref().unwrap();
|
||||
let vkm = app.vkm.as_ref().unwrap();
|
||||
let seat = app.seat.as_ref().unwrap();
|
||||
let pointer: Vp = vpm.create_virtual_pointer(None, &qh, ());
|
||||
let keyboard: Vk = vkm.create_virtual_keyboard(&seat, &qh, ());
|
||||
udp_loop(&pointer, &keyboard, event_queue).unwrap();
|
||||
println!();
|
||||
let connection = protocol::Connection::new(config);
|
||||
let data = loop {
|
||||
match connection.receive_data(DataRequest::KeyMap) {
|
||||
Some(data) => { break data }
|
||||
None => {}
|
||||
}
|
||||
};
|
||||
// TODO use shm_open
|
||||
let f = tempfile::tempfile().unwrap();
|
||||
let mut buf = BufWriter::new(&f);
|
||||
buf.write_all(&data[..]).unwrap();
|
||||
buf.flush().unwrap();
|
||||
keyboard.keymap(1, f.as_raw_fd(), data.len() as u32);
|
||||
event_queue.roundtrip(&mut app).unwrap();
|
||||
udp_loop(&connection, &pointer, &keyboard, event_queue).unwrap();
|
||||
}
|
||||
|
||||
/// main loop handling udp packets
|
||||
fn udp_loop(pointer: &Vp, keyboard: &Vk, q: EventQueue<App>) -> std::io::Result<()> {
|
||||
let socket = UdpSocket::bind("0.0.0.0:42069")?;
|
||||
// we don't care about possible dropped packets for now
|
||||
|
||||
let mut buf = [0u8; 21];
|
||||
fn udp_loop(connection: &protocol::Connection, pointer: &Vp, keyboard: &Vk, q: EventQueue<App>) -> std::io::Result<()> {
|
||||
loop {
|
||||
let (_amt, _src) = socket.recv_from(&mut buf)?;
|
||||
|
||||
match protocol::Event::decode(buf) {
|
||||
protocol::Event::Mouse { t, x, y } => {
|
||||
pointer.motion(t, x, y);
|
||||
if let Some(event) = connection.receive_event() {
|
||||
match event {
|
||||
protocol::Event::Mouse { t, x, y } => { pointer.motion(t, x, y); }
|
||||
protocol::Event::Button { t, b, s } => { pointer.button(t, b, s); }
|
||||
protocol::Event::Axis { t, a, v } => { pointer.axis(t, a, v); }
|
||||
protocol::Event::Key { t, k, s } => { keyboard.key(t, k, u32::from(s)); },
|
||||
protocol::Event::KeyModifier { mods_depressed, mods_latched, mods_locked, group } => {
|
||||
keyboard.modifiers(mods_depressed, mods_latched, mods_locked, group);
|
||||
},
|
||||
}
|
||||
protocol::Event::Button { t, b, s } => {
|
||||
pointer.button(t, b, s);
|
||||
}
|
||||
protocol::Event::Axis { t, a, v } => {
|
||||
pointer.axis(t, a, v);
|
||||
}
|
||||
protocol::Event::Key { t, k, s } => {
|
||||
// TODO send keymap fist
|
||||
// keyboard.key(t, k, match s {
|
||||
// KeyState::Released => 0,
|
||||
// KeyState::Pressed => 1,
|
||||
// _ => 1,
|
||||
// });
|
||||
},
|
||||
protocol::Event::KeyModifier { mods_depressed, mods_latched, mods_locked, group } => {
|
||||
// keyboard.modifiers(mods_depressed, mods_latched, mods_locked, group);
|
||||
},
|
||||
}
|
||||
|
||||
q.flush().unwrap();
|
||||
}
|
||||
}
|
||||
@@ -151,6 +153,19 @@ impl Dispatch<Vp, ()> for App {
|
||||
}
|
||||
}
|
||||
|
||||
impl Dispatch<wl_keyboard::WlKeyboard, ()> for App {
|
||||
fn event(
|
||||
_: &mut Self,
|
||||
_: &wl_keyboard::WlKeyboard,
|
||||
_: <wl_keyboard::WlKeyboard as wayland_client::Proxy>::Event,
|
||||
_: &(),
|
||||
_: &Connection,
|
||||
_: &QueueHandle<Self>,
|
||||
) {
|
||||
//
|
||||
}
|
||||
}
|
||||
|
||||
impl Dispatch<VkManager, ()> for App {
|
||||
fn event(
|
||||
_: &mut Self,
|
||||
|
||||
Reference in New Issue
Block a user