2017-05-21 20:40:15 +00:00
|
|
|
//! Implementation of backend traits for types provided by `winit`
|
|
|
|
|
2020-04-15 11:01:01 +00:00
|
|
|
use crate::backend::egl::display::EGLDisplay;
|
2018-12-15 20:32:28 +00:00
|
|
|
use crate::backend::{
|
2021-05-13 21:36:52 +00:00
|
|
|
egl::{context::GlAttributes, native, EGLContext, EGLSurface, Error as EGLError},
|
2018-10-04 22:37:43 +00:00
|
|
|
input::{
|
2020-05-04 11:03:36 +00:00
|
|
|
Axis, AxisSource, Event as BackendEvent, InputBackend, InputEvent, KeyState, KeyboardKeyEvent,
|
2018-10-04 22:37:43 +00:00
|
|
|
MouseButton, MouseButtonState, PointerAxisEvent, PointerButtonEvent, PointerMotionAbsoluteEvent,
|
|
|
|
Seat, SeatCapabilities, TouchCancelEvent, TouchDownEvent, TouchMotionEvent, TouchSlot, TouchUpEvent,
|
|
|
|
UnusedEvent,
|
|
|
|
},
|
2021-04-28 22:32:47 +00:00
|
|
|
renderer::{
|
2021-05-23 21:03:43 +00:00
|
|
|
gles2::{Gles2Error, Gles2Renderer, Gles2Frame, Gles2Texture},
|
|
|
|
Bind, Unbind, Frame, Renderer, Transform,
|
2021-04-28 22:32:47 +00:00
|
|
|
},
|
2018-11-23 14:11:27 +00:00
|
|
|
};
|
2021-04-28 22:32:47 +00:00
|
|
|
use std::{cell::RefCell, rc::Rc, time::Instant};
|
2020-04-12 11:11:10 +00:00
|
|
|
use wayland_egl as wegl;
|
2021-04-28 22:32:47 +00:00
|
|
|
use wayland_server::Display;
|
2018-09-24 22:32:09 +00:00
|
|
|
use winit::{
|
2020-03-21 11:04:03 +00:00
|
|
|
dpi::{LogicalPosition, LogicalSize, PhysicalSize},
|
|
|
|
event::{
|
2020-04-10 15:01:49 +00:00
|
|
|
ElementState, Event, KeyboardInput, MouseButton as WinitMouseButton, MouseScrollDelta, Touch,
|
|
|
|
TouchPhase, WindowEvent,
|
2020-03-21 11:04:03 +00:00
|
|
|
},
|
|
|
|
event_loop::{ControlFlow, EventLoop},
|
2021-04-30 16:31:15 +00:00
|
|
|
platform::run_return::EventLoopExtRunReturn,
|
2021-04-06 23:09:48 +00:00
|
|
|
platform::unix::WindowExtUnix,
|
|
|
|
window::{Window as WinitWindow, WindowBuilder},
|
2018-09-24 22:32:09 +00:00
|
|
|
};
|
2017-09-13 20:51:35 +00:00
|
|
|
|
2020-04-15 11:01:01 +00:00
|
|
|
#[cfg(feature = "use_system_lib")]
|
2021-04-28 22:32:47 +00:00
|
|
|
use crate::backend::egl::display::EGLBufferReader;
|
2020-04-15 11:01:01 +00:00
|
|
|
|
2018-12-08 12:40:07 +00:00
|
|
|
/// Errors thrown by the `winit` backends
|
2020-04-12 20:35:24 +00:00
|
|
|
#[derive(thiserror::Error, Debug)]
|
|
|
|
pub enum Error {
|
|
|
|
/// Failed to initialize a window
|
|
|
|
#[error("Failed to initialize a window")]
|
|
|
|
InitFailed(#[from] winit::error::OsError),
|
|
|
|
/// Context creation is not supported on the current window system
|
|
|
|
#[error("Context creation is not supported on the current window system")]
|
|
|
|
NotSupported,
|
|
|
|
/// EGL error
|
|
|
|
#[error("EGL error: {0}")]
|
2021-04-06 23:09:48 +00:00
|
|
|
Egl(#[from] EGLError),
|
|
|
|
/// Renderer initialization failed
|
|
|
|
#[error("Renderer creation failed: {0}")]
|
|
|
|
RendererCreationError(#[from] Gles2Error),
|
2017-12-21 15:01:16 +00:00
|
|
|
}
|
|
|
|
|
2021-04-30 15:21:35 +00:00
|
|
|
/// Size properties of a winit window
|
2021-04-06 23:09:48 +00:00
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct WindowSize {
|
2021-04-30 15:21:35 +00:00
|
|
|
/// Pixel side of the window
|
2021-04-06 23:09:48 +00:00
|
|
|
pub physical_size: PhysicalSize<u32>,
|
2021-04-30 15:21:35 +00:00
|
|
|
/// Scaling factor of the window
|
2021-04-06 23:09:48 +00:00
|
|
|
pub scale_factor: f64,
|
2018-10-13 10:36:00 +00:00
|
|
|
}
|
|
|
|
|
2021-05-24 17:15:46 +00:00
|
|
|
/// Window with an active EGL Context created by `winit`. Implements the [`Renderer`] trait
|
2021-02-09 19:57:14 +00:00
|
|
|
#[derive(Debug)]
|
2017-05-18 20:28:02 +00:00
|
|
|
pub struct WinitGraphicsBackend {
|
2021-04-06 23:09:48 +00:00
|
|
|
renderer: Gles2Renderer,
|
|
|
|
display: EGLDisplay,
|
|
|
|
egl: Rc<EGLSurface>,
|
|
|
|
window: Rc<WinitWindow>,
|
2018-10-13 10:36:00 +00:00
|
|
|
size: Rc<RefCell<WindowSize>>,
|
2021-04-06 23:09:48 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 12:40:07 +00:00
|
|
|
/// Abstracted event loop of a [`WinitWindow`] implementing the [`InputBackend`] trait
|
2017-05-18 20:28:02 +00:00
|
|
|
///
|
2018-12-08 12:40:07 +00:00
|
|
|
/// You need to call [`dispatch_new_events`](InputBackend::dispatch_new_events)
|
|
|
|
/// periodically to receive any events.
|
2021-02-09 19:57:14 +00:00
|
|
|
#[derive(Debug)]
|
2017-05-18 20:28:02 +00:00
|
|
|
pub struct WinitInputBackend {
|
2021-04-06 23:09:48 +00:00
|
|
|
egl: Rc<EGLSurface>,
|
|
|
|
window: Rc<WinitWindow>,
|
2020-03-21 11:04:03 +00:00
|
|
|
events_loop: EventLoop<()>,
|
2018-03-17 15:15:23 +00:00
|
|
|
time: Instant,
|
2017-05-18 20:28:02 +00:00
|
|
|
key_counter: u32,
|
|
|
|
seat: Seat,
|
2017-06-04 21:11:26 +00:00
|
|
|
logger: ::slog::Logger,
|
2018-10-13 10:36:00 +00:00
|
|
|
size: Rc<RefCell<WindowSize>>,
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
2021-05-24 17:15:46 +00:00
|
|
|
/// Create a new [`WinitGraphicsBackend`], which implements the [`Renderer`] trait and a corresponding [`WinitInputBackend`],
|
2018-12-08 12:40:07 +00:00
|
|
|
/// which implements the [`InputBackend`] trait
|
2020-04-12 20:35:24 +00:00
|
|
|
pub fn init<L>(logger: L) -> Result<(WinitGraphicsBackend, WinitInputBackend), Error>
|
2017-06-20 09:31:18 +00:00
|
|
|
where
|
|
|
|
L: Into<Option<::slog::Logger>>,
|
2017-06-04 21:11:26 +00:00
|
|
|
{
|
2017-06-20 09:31:18 +00:00
|
|
|
init_from_builder(
|
|
|
|
WindowBuilder::new()
|
2020-03-21 11:04:03 +00:00
|
|
|
.with_inner_size(LogicalSize::new(1280.0, 800.0))
|
2017-06-20 09:31:18 +00:00
|
|
|
.with_title("Smithay")
|
2020-03-21 11:04:03 +00:00
|
|
|
.with_visible(true),
|
2017-06-20 09:31:18 +00:00
|
|
|
logger,
|
|
|
|
)
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
2021-05-24 17:15:46 +00:00
|
|
|
/// Create a new [`WinitGraphicsBackend`], which implements the [`Renderer`] trait, from a given [`WindowBuilder`]
|
2018-12-08 12:40:07 +00:00
|
|
|
/// struct and a corresponding [`WinitInputBackend`], which implements the [`InputBackend`] trait
|
2017-12-15 17:38:10 +00:00
|
|
|
pub fn init_from_builder<L>(
|
2018-04-18 07:58:32 +00:00
|
|
|
builder: WindowBuilder,
|
|
|
|
logger: L,
|
2020-04-12 20:35:24 +00:00
|
|
|
) -> Result<(WinitGraphicsBackend, WinitInputBackend), Error>
|
2017-06-20 09:31:18 +00:00
|
|
|
where
|
|
|
|
L: Into<Option<::slog::Logger>>,
|
2017-06-04 21:11:26 +00:00
|
|
|
{
|
2017-06-20 09:31:18 +00:00
|
|
|
init_from_builder_with_gl_attr(
|
|
|
|
builder,
|
|
|
|
GlAttributes {
|
2021-04-06 23:09:48 +00:00
|
|
|
version: (3, 0),
|
2017-06-20 09:31:18 +00:00
|
|
|
profile: None,
|
|
|
|
debug: cfg!(debug_assertions),
|
|
|
|
vsync: true,
|
|
|
|
},
|
|
|
|
logger,
|
|
|
|
)
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
2021-05-24 17:15:46 +00:00
|
|
|
/// Create a new [`WinitGraphicsBackend`], which implements the [`Renderer`] trait, from a given [`WindowBuilder`]
|
2018-12-08 12:40:07 +00:00
|
|
|
/// struct, as well as given [`GlAttributes`] for further customization of the rendering pipeline and a
|
|
|
|
/// corresponding [`WinitInputBackend`], which implements the [`InputBackend`] trait.
|
2017-12-15 17:38:10 +00:00
|
|
|
pub fn init_from_builder_with_gl_attr<L>(
|
2018-04-18 07:58:32 +00:00
|
|
|
builder: WindowBuilder,
|
|
|
|
attributes: GlAttributes,
|
|
|
|
logger: L,
|
2020-04-12 20:35:24 +00:00
|
|
|
) -> Result<(WinitGraphicsBackend, WinitInputBackend), Error>
|
2017-06-20 09:31:18 +00:00
|
|
|
where
|
|
|
|
L: Into<Option<::slog::Logger>>,
|
2017-06-04 21:11:26 +00:00
|
|
|
{
|
2020-07-10 10:50:58 +00:00
|
|
|
let log = crate::slog_or_fallback(logger).new(o!("smithay_module" => "backend_winit"));
|
2017-06-04 21:11:26 +00:00
|
|
|
info!(log, "Initializing a winit backend");
|
|
|
|
|
2020-03-21 11:04:03 +00:00
|
|
|
let events_loop = EventLoop::new();
|
2020-04-12 20:35:24 +00:00
|
|
|
let winit_window = builder.build(&events_loop).map_err(Error::InitFailed)?;
|
2020-03-21 11:04:03 +00:00
|
|
|
|
2017-06-04 21:11:26 +00:00
|
|
|
debug!(log, "Window created");
|
2017-05-18 20:28:02 +00:00
|
|
|
|
2017-12-28 14:28:15 +00:00
|
|
|
let reqs = Default::default();
|
2021-04-06 23:09:48 +00:00
|
|
|
let (display, context, surface) = {
|
|
|
|
let display = EGLDisplay::new(&winit_window, log.clone())?;
|
|
|
|
let context = EGLContext::new_with_config(&display, attributes, reqs, log.clone())?;
|
|
|
|
|
|
|
|
let surface = if let Some(wl_surface) = winit_window.wayland_surface() {
|
|
|
|
debug!(log, "Winit backend: Wayland");
|
|
|
|
let size = winit_window.inner_size();
|
|
|
|
let surface = unsafe {
|
|
|
|
wegl::WlEglSurface::new_from_raw(wl_surface as *mut _, size.width as i32, size.height as i32)
|
|
|
|
};
|
2021-04-28 22:32:47 +00:00
|
|
|
EGLSurface::new(
|
|
|
|
&display,
|
|
|
|
context.pixel_format().unwrap(),
|
|
|
|
reqs.double_buffer,
|
|
|
|
context.config_id(),
|
|
|
|
surface,
|
|
|
|
log.clone(),
|
|
|
|
)
|
|
|
|
.map_err(EGLError::CreationFailed)?
|
2021-04-06 23:09:48 +00:00
|
|
|
} else if let Some(xlib_window) = winit_window.xlib_window().map(native::XlibWindow) {
|
|
|
|
debug!(log, "Winit backend: X11");
|
2021-04-28 22:32:47 +00:00
|
|
|
EGLSurface::new(
|
|
|
|
&display,
|
|
|
|
context.pixel_format().unwrap(),
|
|
|
|
reqs.double_buffer,
|
|
|
|
context.config_id(),
|
|
|
|
xlib_window,
|
|
|
|
log.clone(),
|
|
|
|
)
|
|
|
|
.map_err(EGLError::CreationFailed)?
|
2017-12-21 15:01:16 +00:00
|
|
|
} else {
|
2021-04-06 23:09:48 +00:00
|
|
|
unreachable!("No backends for winit other then Wayland and X11 are supported")
|
|
|
|
};
|
2021-04-25 21:38:48 +00:00
|
|
|
|
2021-04-28 22:03:16 +00:00
|
|
|
let _ = context.unbind();
|
2021-04-28 22:32:47 +00:00
|
|
|
|
|
|
|
(display, context, surface)
|
2021-04-06 23:09:48 +00:00
|
|
|
};
|
2017-05-18 20:28:02 +00:00
|
|
|
|
2018-10-13 10:36:00 +00:00
|
|
|
let size = Rc::new(RefCell::new(WindowSize {
|
2021-04-06 23:09:48 +00:00
|
|
|
physical_size: winit_window.inner_size(), // TODO: original code check if window is alive or not using inner_size().expect()
|
|
|
|
scale_factor: winit_window.scale_factor(),
|
2018-10-13 10:36:00 +00:00
|
|
|
}));
|
|
|
|
|
2021-04-06 23:09:48 +00:00
|
|
|
let window = Rc::new(winit_window);
|
|
|
|
let egl = Rc::new(surface);
|
2021-04-28 22:03:16 +00:00
|
|
|
let renderer = unsafe { Gles2Renderer::new(context, log.clone())? };
|
2021-04-06 23:09:48 +00:00
|
|
|
|
2017-06-20 09:31:18 +00:00
|
|
|
Ok((
|
|
|
|
WinitGraphicsBackend {
|
2017-05-21 20:40:15 +00:00
|
|
|
window: window.clone(),
|
2021-04-06 23:09:48 +00:00
|
|
|
display,
|
|
|
|
egl: egl.clone(),
|
2021-04-25 21:38:48 +00:00
|
|
|
renderer,
|
2018-10-13 10:36:00 +00:00
|
|
|
size: size.clone(),
|
2017-05-21 20:40:15 +00:00
|
|
|
},
|
|
|
|
WinitInputBackend {
|
2017-09-13 20:51:35 +00:00
|
|
|
events_loop,
|
|
|
|
window,
|
2021-04-06 23:09:48 +00:00
|
|
|
egl,
|
2018-03-17 15:15:23 +00:00
|
|
|
time: Instant::now(),
|
2017-05-21 20:40:15 +00:00
|
|
|
key_counter: 0,
|
2017-06-20 09:31:18 +00:00
|
|
|
seat: Seat::new(
|
|
|
|
0,
|
2018-01-16 15:27:56 +00:00
|
|
|
"winit",
|
2017-06-20 09:31:18 +00:00
|
|
|
SeatCapabilities {
|
|
|
|
pointer: true,
|
|
|
|
keyboard: true,
|
|
|
|
touch: true,
|
|
|
|
},
|
|
|
|
),
|
2017-06-04 21:11:26 +00:00
|
|
|
logger: log.new(o!("smithay_winit_component" => "input")),
|
2018-10-13 10:36:00 +00:00
|
|
|
size,
|
2017-06-20 09:31:18 +00:00
|
|
|
},
|
|
|
|
))
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
2020-05-04 11:03:36 +00:00
|
|
|
/// Specific events generated by Winit
|
2021-02-09 19:57:14 +00:00
|
|
|
#[derive(Debug)]
|
2020-05-04 11:03:36 +00:00
|
|
|
pub enum WinitEvent {
|
|
|
|
/// The window has been resized
|
|
|
|
Resized {
|
|
|
|
/// The new physical size (in pixels)
|
|
|
|
size: (f64, f64),
|
|
|
|
/// The new scale factor
|
|
|
|
scale_factor: f64,
|
|
|
|
},
|
|
|
|
/// The focus state of the window changed
|
|
|
|
Focus(bool),
|
|
|
|
/// A redraw was requested
|
|
|
|
Refresh,
|
2018-01-11 01:01:22 +00:00
|
|
|
}
|
|
|
|
|
2021-04-06 23:09:48 +00:00
|
|
|
#[cfg(feature = "use_system_lib")]
|
2018-01-11 00:45:38 +00:00
|
|
|
impl WinitGraphicsBackend {
|
2021-04-30 15:21:35 +00:00
|
|
|
/// Bind a `wl_display` to allow hardware-accelerated clients using `wl_drm`.
|
|
|
|
///
|
|
|
|
/// Returns an `EGLBufferReader` used to access the contents of these buffers.
|
|
|
|
///
|
|
|
|
/// *Note*: Only on implementation of `wl_drm` can be bound by a single wayland display.
|
2021-04-06 23:09:48 +00:00
|
|
|
pub fn bind_wl_display(&self, wl_display: &Display) -> Result<EGLBufferReader, EGLError> {
|
|
|
|
self.display.bind_wl_display(wl_display)
|
2018-01-11 00:45:38 +00:00
|
|
|
}
|
|
|
|
|
2021-04-30 15:21:35 +00:00
|
|
|
/// Window size of the underlying window
|
2021-04-06 23:09:48 +00:00
|
|
|
pub fn window_size(&self) -> WindowSize {
|
|
|
|
self.size.borrow().clone()
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
2021-04-30 15:21:35 +00:00
|
|
|
/// Reference to the underlying window
|
2021-04-06 23:09:48 +00:00
|
|
|
pub fn window(&self) -> &WinitWindow {
|
|
|
|
&*self.window
|
2020-06-27 21:26:33 +00:00
|
|
|
}
|
|
|
|
|
2021-05-23 21:03:43 +00:00
|
|
|
/// Access the underlying renderer
|
|
|
|
pub fn renderer(&mut self) -> &mut Gles2Renderer {
|
|
|
|
&mut self.renderer
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Shortcut to `Renderer::render` with the current window dimensions
|
|
|
|
/// and this window set as the rendering target.
|
|
|
|
pub fn render<F, R>(&mut self, rendering: F) -> Result<R, crate::backend::SwapBuffersError>
|
|
|
|
where
|
|
|
|
F: FnOnce(&mut Gles2Renderer, &mut Gles2Frame) -> R
|
|
|
|
{
|
2021-04-06 23:09:48 +00:00
|
|
|
let (width, height) = {
|
|
|
|
let size = self.size.borrow();
|
|
|
|
size.physical_size.into()
|
|
|
|
};
|
2021-04-28 22:32:47 +00:00
|
|
|
|
2021-04-25 21:38:48 +00:00
|
|
|
self.renderer.bind(self.egl.clone())?;
|
2021-05-23 21:03:43 +00:00
|
|
|
let result = self.renderer.render(width, height, Transform::Normal, rendering)?;
|
2021-04-06 23:09:48 +00:00
|
|
|
self.egl.swap_buffers()?;
|
2021-05-23 21:03:43 +00:00
|
|
|
self.renderer.unbind()?;
|
|
|
|
Ok(result)
|
2017-12-21 15:01:16 +00:00
|
|
|
}
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 12:40:07 +00:00
|
|
|
/// Errors that may happen when driving the event loop of [`WinitInputBackend`]
|
2020-04-12 20:35:24 +00:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, thiserror::Error)]
|
2017-05-18 20:28:02 +00:00
|
|
|
pub enum WinitInputError {
|
2018-12-08 12:40:07 +00:00
|
|
|
/// The underlying [`WinitWindow`] was closed. No further events can be processed.
|
2017-05-18 20:28:02 +00:00
|
|
|
///
|
2018-12-08 12:40:07 +00:00
|
|
|
/// See `dispatch_new_events`.
|
2020-04-12 20:35:24 +00:00
|
|
|
#[error("Winit window was closed")]
|
2017-05-18 20:28:02 +00:00
|
|
|
WindowClosed,
|
|
|
|
}
|
|
|
|
|
2018-12-08 12:40:07 +00:00
|
|
|
/// Winit-Backend internal event wrapping `winit`'s types into a [`KeyboardKeyEvent`]
|
2021-02-09 19:57:14 +00:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2017-05-18 20:28:02 +00:00
|
|
|
pub struct WinitKeyboardInputEvent {
|
|
|
|
time: u32,
|
2017-06-02 11:15:31 +00:00
|
|
|
key: u32,
|
2017-05-18 20:28:02 +00:00
|
|
|
count: u32,
|
|
|
|
state: ElementState,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl BackendEvent for WinitKeyboardInputEvent {
|
|
|
|
fn time(&self) -> u32 {
|
|
|
|
self.time
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl KeyboardKeyEvent for WinitKeyboardInputEvent {
|
|
|
|
fn key_code(&self) -> u32 {
|
2017-06-02 11:15:31 +00:00
|
|
|
self.key
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn state(&self) -> KeyState {
|
|
|
|
self.state.into()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn count(&self) -> u32 {
|
|
|
|
self.count
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-08 12:40:07 +00:00
|
|
|
/// Winit-Backend internal event wrapping `winit`'s types into a [`PointerMotionAbsoluteEvent`]
|
2021-02-09 19:57:14 +00:00
|
|
|
#[derive(Debug, Clone)]
|
2017-05-18 20:28:02 +00:00
|
|
|
pub struct WinitMouseMovedEvent {
|
2018-10-13 10:36:00 +00:00
|
|
|
size: Rc<RefCell<WindowSize>>,
|
2017-05-18 20:28:02 +00:00
|
|
|
time: u32,
|
2020-03-23 10:02:29 +00:00
|
|
|
logical_position: LogicalPosition<f64>,
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl BackendEvent for WinitMouseMovedEvent {
|
|
|
|
fn time(&self) -> u32 {
|
|
|
|
self.time
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-10 15:01:49 +00:00
|
|
|
impl PointerMotionAbsoluteEvent for WinitMouseMovedEvent {
|
|
|
|
// TODO: maybe use {Logical, Physical}Position from winit?
|
2017-05-18 20:28:02 +00:00
|
|
|
fn x(&self) -> f64 {
|
2018-10-13 10:36:00 +00:00
|
|
|
let wsize = self.size.borrow();
|
2020-03-23 10:02:29 +00:00
|
|
|
self.logical_position.x * wsize.scale_factor
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn y(&self) -> f64 {
|
2018-10-13 10:36:00 +00:00
|
|
|
let wsize = self.size.borrow();
|
2020-03-23 10:02:29 +00:00
|
|
|
self.logical_position.y * wsize.scale_factor
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
2020-07-12 18:08:44 +00:00
|
|
|
fn x_transformed(&self, width: u32) -> f64 {
|
2018-10-13 10:36:00 +00:00
|
|
|
let wsize = self.size.borrow();
|
2020-03-21 11:04:03 +00:00
|
|
|
let w_width = wsize.physical_size.to_logical::<f64>(wsize.scale_factor).width;
|
2020-07-12 18:08:44 +00:00
|
|
|
f64::max(self.logical_position.x * width as f64 / w_width, 0.0)
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
2020-07-12 18:08:44 +00:00
|
|
|
fn y_transformed(&self, height: u32) -> f64 {
|
2018-10-13 10:36:00 +00:00
|
|
|
let wsize = self.size.borrow();
|
2020-03-21 11:04:03 +00:00
|
|
|
let w_height = wsize.physical_size.to_logical::<f64>(wsize.scale_factor).height;
|
2020-07-12 18:08:44 +00:00
|
|
|
f64::max(self.logical_position.y * height as f64 / w_height, 0.0)
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-08 12:40:07 +00:00
|
|
|
/// Winit-Backend internal event wrapping `winit`'s types into a [`PointerAxisEvent`]
|
2021-02-09 19:57:14 +00:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq)]
|
2017-05-18 20:28:02 +00:00
|
|
|
pub struct WinitMouseWheelEvent {
|
|
|
|
time: u32,
|
|
|
|
delta: MouseScrollDelta,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl BackendEvent for WinitMouseWheelEvent {
|
|
|
|
fn time(&self) -> u32 {
|
|
|
|
self.time
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PointerAxisEvent for WinitMouseWheelEvent {
|
|
|
|
fn source(&self) -> AxisSource {
|
|
|
|
match self.delta {
|
|
|
|
MouseScrollDelta::LineDelta(_, _) => AxisSource::Wheel,
|
2018-09-26 05:36:18 +00:00
|
|
|
MouseScrollDelta::PixelDelta(_) => AxisSource::Continuous,
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-01 10:43:16 +00:00
|
|
|
fn amount(&self, axis: Axis) -> Option<f64> {
|
2018-03-22 15:09:58 +00:00
|
|
|
match (axis, self.delta) {
|
2020-01-01 10:43:16 +00:00
|
|
|
(Axis::Horizontal, MouseScrollDelta::PixelDelta(delta)) => Some(delta.x),
|
|
|
|
(Axis::Vertical, MouseScrollDelta::PixelDelta(delta)) => Some(delta.y),
|
2018-03-22 15:09:58 +00:00
|
|
|
(_, MouseScrollDelta::LineDelta(_, _)) => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-01 10:43:16 +00:00
|
|
|
fn amount_discrete(&self, axis: Axis) -> Option<f64> {
|
2018-03-22 15:09:58 +00:00
|
|
|
match (axis, self.delta) {
|
2020-01-01 10:43:16 +00:00
|
|
|
(Axis::Horizontal, MouseScrollDelta::LineDelta(x, _)) => Some(x as f64),
|
|
|
|
(Axis::Vertical, MouseScrollDelta::LineDelta(_, y)) => Some(y as f64),
|
2018-09-26 05:36:18 +00:00
|
|
|
(_, MouseScrollDelta::PixelDelta(_)) => None,
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-08 12:40:07 +00:00
|
|
|
/// Winit-Backend internal event wrapping `winit`'s types into a [`PointerButtonEvent`]
|
2021-02-09 19:57:14 +00:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2017-05-18 20:28:02 +00:00
|
|
|
pub struct WinitMouseInputEvent {
|
|
|
|
time: u32,
|
|
|
|
button: WinitMouseButton,
|
|
|
|
state: ElementState,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl BackendEvent for WinitMouseInputEvent {
|
|
|
|
fn time(&self) -> u32 {
|
|
|
|
self.time
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PointerButtonEvent for WinitMouseInputEvent {
|
|
|
|
fn button(&self) -> MouseButton {
|
|
|
|
self.button.into()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn state(&self) -> MouseButtonState {
|
|
|
|
self.state.into()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-08 12:40:07 +00:00
|
|
|
/// Winit-Backend internal event wrapping `winit`'s types into a [`TouchDownEvent`]
|
2021-02-09 19:57:14 +00:00
|
|
|
#[derive(Debug, Clone)]
|
2017-05-18 20:28:02 +00:00
|
|
|
pub struct WinitTouchStartedEvent {
|
2018-10-13 10:36:00 +00:00
|
|
|
size: Rc<RefCell<WindowSize>>,
|
2017-05-18 20:28:02 +00:00
|
|
|
time: u32,
|
|
|
|
location: (f64, f64),
|
|
|
|
id: u64,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl BackendEvent for WinitTouchStartedEvent {
|
|
|
|
fn time(&self) -> u32 {
|
|
|
|
self.time
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TouchDownEvent for WinitTouchStartedEvent {
|
|
|
|
fn slot(&self) -> Option<TouchSlot> {
|
|
|
|
Some(TouchSlot::new(self.id))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn x(&self) -> f64 {
|
2018-10-13 10:36:00 +00:00
|
|
|
let wsize = self.size.borrow();
|
2020-03-21 11:04:03 +00:00
|
|
|
self.location.0 * wsize.scale_factor
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn y(&self) -> f64 {
|
2018-10-13 10:36:00 +00:00
|
|
|
let wsize = self.size.borrow();
|
2020-03-21 11:04:03 +00:00
|
|
|
self.location.1 * wsize.scale_factor
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
2020-07-12 18:08:44 +00:00
|
|
|
fn x_transformed(&self, width: u32) -> f64 {
|
2018-10-13 10:36:00 +00:00
|
|
|
let wsize = self.size.borrow();
|
2020-07-12 18:08:44 +00:00
|
|
|
let w_width = wsize.physical_size.to_logical::<f64>(wsize.scale_factor).width;
|
|
|
|
f64::max(self.location.0 * width as f64 / w_width, 0.0)
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
2020-07-12 18:08:44 +00:00
|
|
|
fn y_transformed(&self, height: u32) -> f64 {
|
2018-10-13 10:36:00 +00:00
|
|
|
let wsize = self.size.borrow();
|
2020-07-12 18:08:44 +00:00
|
|
|
let w_height = wsize.physical_size.to_logical::<f64>(wsize.scale_factor).height;
|
|
|
|
f64::max(self.location.1 * height as f64 / w_height, 0.0)
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-08 12:40:07 +00:00
|
|
|
/// Winit-Backend internal event wrapping `winit`'s types into a [`TouchMotionEvent`]
|
2021-02-09 19:57:14 +00:00
|
|
|
#[derive(Debug, Clone)]
|
2017-05-18 20:28:02 +00:00
|
|
|
pub struct WinitTouchMovedEvent {
|
2018-10-13 10:36:00 +00:00
|
|
|
size: Rc<RefCell<WindowSize>>,
|
2017-05-18 20:28:02 +00:00
|
|
|
time: u32,
|
|
|
|
location: (f64, f64),
|
|
|
|
id: u64,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl BackendEvent for WinitTouchMovedEvent {
|
|
|
|
fn time(&self) -> u32 {
|
|
|
|
self.time
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TouchMotionEvent for WinitTouchMovedEvent {
|
|
|
|
fn slot(&self) -> Option<TouchSlot> {
|
|
|
|
Some(TouchSlot::new(self.id))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn x(&self) -> f64 {
|
2018-10-13 10:36:00 +00:00
|
|
|
let wsize = self.size.borrow();
|
2020-03-21 11:04:03 +00:00
|
|
|
self.location.0 * wsize.scale_factor
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn y(&self) -> f64 {
|
2018-10-13 10:36:00 +00:00
|
|
|
let wsize = self.size.borrow();
|
2020-03-21 11:04:03 +00:00
|
|
|
self.location.1 * wsize.scale_factor
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
2020-07-12 18:08:44 +00:00
|
|
|
fn x_transformed(&self, width: u32) -> f64 {
|
2018-10-13 10:36:00 +00:00
|
|
|
let wsize = self.size.borrow();
|
2020-07-12 18:08:44 +00:00
|
|
|
let w_width = wsize.physical_size.to_logical::<f64>(wsize.scale_factor).width;
|
|
|
|
f64::max(self.location.0 * width as f64 / w_width, 0.0)
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
2020-07-12 18:08:44 +00:00
|
|
|
fn y_transformed(&self, height: u32) -> f64 {
|
2018-10-13 10:36:00 +00:00
|
|
|
let wsize = self.size.borrow();
|
2020-07-12 18:08:44 +00:00
|
|
|
let w_height = wsize.physical_size.to_logical::<f64>(wsize.scale_factor).height;
|
|
|
|
f64::max(self.location.1 * height as f64 / w_height, 0.0)
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-30 12:56:30 +00:00
|
|
|
/// Winit-Backend internal event wrapping `winit`'s types into a `TouchUpEvent`
|
2021-02-09 19:57:14 +00:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2017-05-18 20:28:02 +00:00
|
|
|
pub struct WinitTouchEndedEvent {
|
|
|
|
time: u32,
|
|
|
|
id: u64,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl BackendEvent for WinitTouchEndedEvent {
|
|
|
|
fn time(&self) -> u32 {
|
|
|
|
self.time
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TouchUpEvent for WinitTouchEndedEvent {
|
|
|
|
fn slot(&self) -> Option<TouchSlot> {
|
|
|
|
Some(TouchSlot::new(self.id))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-08 12:40:07 +00:00
|
|
|
/// Winit-Backend internal event wrapping `winit`'s types into a [`TouchCancelEvent`]
|
2021-02-09 19:57:14 +00:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2017-05-18 20:28:02 +00:00
|
|
|
pub struct WinitTouchCancelledEvent {
|
|
|
|
time: u32,
|
|
|
|
id: u64,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl BackendEvent for WinitTouchCancelledEvent {
|
|
|
|
fn time(&self) -> u32 {
|
|
|
|
self.time
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TouchCancelEvent for WinitTouchCancelledEvent {
|
|
|
|
fn slot(&self) -> Option<TouchSlot> {
|
|
|
|
Some(TouchSlot::new(self.id))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-04 11:03:36 +00:00
|
|
|
/// Input config for Winit
|
|
|
|
///
|
|
|
|
/// This backend does not allow any input configuration, so this type does nothing.
|
2021-02-09 19:57:14 +00:00
|
|
|
#[derive(Debug)]
|
2020-05-04 11:03:36 +00:00
|
|
|
pub struct WinitInputConfig;
|
2018-01-11 01:01:22 +00:00
|
|
|
|
2017-05-18 20:28:02 +00:00
|
|
|
impl InputBackend for WinitInputBackend {
|
|
|
|
type EventError = WinitInputError;
|
|
|
|
|
|
|
|
type KeyboardKeyEvent = WinitKeyboardInputEvent;
|
|
|
|
type PointerAxisEvent = WinitMouseWheelEvent;
|
|
|
|
type PointerButtonEvent = WinitMouseInputEvent;
|
|
|
|
type PointerMotionEvent = UnusedEvent;
|
|
|
|
type PointerMotionAbsoluteEvent = WinitMouseMovedEvent;
|
|
|
|
type TouchDownEvent = WinitTouchStartedEvent;
|
|
|
|
type TouchUpEvent = WinitTouchEndedEvent;
|
|
|
|
type TouchMotionEvent = WinitTouchMovedEvent;
|
|
|
|
type TouchCancelEvent = WinitTouchCancelledEvent;
|
|
|
|
type TouchFrameEvent = UnusedEvent;
|
|
|
|
|
2020-05-04 11:03:36 +00:00
|
|
|
type SpecialEvent = WinitEvent;
|
|
|
|
type InputConfig = WinitInputConfig;
|
2017-05-18 20:28:02 +00:00
|
|
|
|
2020-05-04 11:03:36 +00:00
|
|
|
fn seats(&self) -> Vec<Seat> {
|
|
|
|
vec![self.seat.clone()]
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn input_config(&mut self) -> &mut Self::InputConfig {
|
2020-05-04 11:03:36 +00:00
|
|
|
/// So much effort to return a useless singleton!
|
|
|
|
static mut CONFIG: WinitInputConfig = WinitInputConfig;
|
|
|
|
unsafe { &mut CONFIG }
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
2021-05-24 17:15:46 +00:00
|
|
|
/// Processes new events of the underlying event loop and calls the provided callback.
|
2017-05-18 20:28:02 +00:00
|
|
|
///
|
|
|
|
/// You need to periodically call this function to keep the underlying event loop and
|
2021-05-24 17:15:46 +00:00
|
|
|
/// [`WinitWindow`] active. Otherwise the window may no respond to user interaction.
|
2017-05-18 20:28:02 +00:00
|
|
|
///
|
2018-12-08 12:40:07 +00:00
|
|
|
/// Returns an error if the [`WinitWindow`] the window has been closed. Calling
|
|
|
|
/// `dispatch_new_events` again after the [`WinitWindow`] has been closed is considered an
|
2018-10-30 12:56:30 +00:00
|
|
|
/// application error and unspecified behaviour may occur.
|
2017-05-18 20:28:02 +00:00
|
|
|
///
|
2018-12-08 12:40:07 +00:00
|
|
|
/// The linked [`WinitGraphicsBackend`] will error with a lost context and should
|
2017-05-18 20:28:02 +00:00
|
|
|
/// not be used anymore as well.
|
2020-05-04 11:03:36 +00:00
|
|
|
fn dispatch_new_events<F>(&mut self, mut callback: F) -> ::std::result::Result<(), WinitInputError>
|
|
|
|
where
|
|
|
|
F: FnMut(InputEvent<Self>, &mut WinitInputConfig),
|
|
|
|
{
|
2017-05-18 20:28:02 +00:00
|
|
|
let mut closed = false;
|
|
|
|
|
|
|
|
{
|
2018-01-12 14:49:55 +00:00
|
|
|
// NOTE: This ugly pile of references is here, because rustc could not
|
2017-06-04 21:11:26 +00:00
|
|
|
// figure out how to reference all these objects correctly into the
|
|
|
|
// upcoming closure, which is why all are borrowed manually and the
|
|
|
|
// assignments are then moved into the closure to avoid rustc's
|
|
|
|
// wrong interference.
|
2018-12-15 20:58:43 +00:00
|
|
|
let closed_ptr = &mut closed;
|
|
|
|
let key_counter = &mut self.key_counter;
|
2018-03-17 15:15:23 +00:00
|
|
|
let time = &self.time;
|
2017-05-18 20:28:02 +00:00
|
|
|
let seat = &self.seat;
|
|
|
|
let window = &self.window;
|
2021-04-06 23:09:48 +00:00
|
|
|
let egl = &self.egl;
|
2017-06-04 21:11:26 +00:00
|
|
|
let logger = &self.logger;
|
2018-10-13 10:36:00 +00:00
|
|
|
let window_size = &self.size;
|
2020-05-04 11:03:36 +00:00
|
|
|
let mut callback = move |event| callback(event, &mut WinitInputConfig);
|
2020-04-10 15:01:49 +00:00
|
|
|
|
|
|
|
self.events_loop
|
|
|
|
.run_return(move |event, _target, control_flow| match event {
|
2020-03-21 11:04:03 +00:00
|
|
|
Event::RedrawEventsCleared => {
|
|
|
|
*control_flow = ControlFlow::Exit;
|
2020-04-10 15:01:49 +00:00
|
|
|
}
|
2020-03-21 11:04:03 +00:00
|
|
|
Event::RedrawRequested(_id) => {
|
2020-05-04 11:03:36 +00:00
|
|
|
callback(InputEvent::Special(WinitEvent::Refresh));
|
2020-04-10 15:01:49 +00:00
|
|
|
}
|
2020-03-21 11:04:03 +00:00
|
|
|
Event::WindowEvent { event, .. } => {
|
|
|
|
let duration = Instant::now().duration_since(*time);
|
|
|
|
let nanos = duration.subsec_nanos() as u64;
|
|
|
|
let time = ((1000 * duration.as_secs()) + (nanos / 1_000_000)) as u32;
|
2020-05-04 11:03:36 +00:00
|
|
|
match event {
|
|
|
|
WindowEvent::Resized(psize) => {
|
2020-03-21 11:04:03 +00:00
|
|
|
trace!(logger, "Resizing window to {:?}", psize);
|
2021-04-06 23:09:48 +00:00
|
|
|
let scale_factor = window.scale_factor();
|
2020-03-21 11:04:03 +00:00
|
|
|
let mut wsize = window_size.borrow_mut();
|
|
|
|
wsize.physical_size = psize;
|
|
|
|
wsize.scale_factor = scale_factor;
|
2021-04-06 23:09:48 +00:00
|
|
|
egl.resize(psize.width as i32, psize.height as i32, 0, 0);
|
2020-05-04 11:03:36 +00:00
|
|
|
callback(InputEvent::Special(WinitEvent::Resized {
|
|
|
|
size: psize.into(),
|
|
|
|
scale_factor,
|
|
|
|
}));
|
2018-10-13 10:36:00 +00:00
|
|
|
}
|
2020-05-04 11:03:36 +00:00
|
|
|
WindowEvent::Focused(focus) => {
|
|
|
|
callback(InputEvent::Special(WinitEvent::Focus(focus)));
|
2018-10-13 10:36:00 +00:00
|
|
|
}
|
2020-05-04 11:03:36 +00:00
|
|
|
|
|
|
|
WindowEvent::ScaleFactorChanged {
|
|
|
|
scale_factor,
|
|
|
|
new_inner_size: new_psize,
|
|
|
|
} => {
|
2020-03-21 11:04:03 +00:00
|
|
|
let mut wsize = window_size.borrow_mut();
|
|
|
|
wsize.scale_factor = scale_factor;
|
2021-04-06 23:09:48 +00:00
|
|
|
egl.resize(new_psize.width as i32, new_psize.height as i32, 0, 0);
|
2020-05-04 11:03:36 +00:00
|
|
|
let psize_f64: (f64, f64) = (new_psize.width.into(), new_psize.height.into());
|
|
|
|
callback(InputEvent::Special(WinitEvent::Resized {
|
|
|
|
size: psize_f64,
|
|
|
|
scale_factor: wsize.scale_factor,
|
|
|
|
}));
|
2020-03-21 11:04:03 +00:00
|
|
|
}
|
2020-05-04 11:03:36 +00:00
|
|
|
WindowEvent::KeyboardInput {
|
|
|
|
input: KeyboardInput { scancode, state, .. },
|
|
|
|
..
|
|
|
|
} => {
|
2020-03-21 11:04:03 +00:00
|
|
|
match state {
|
|
|
|
ElementState::Pressed => *key_counter += 1,
|
|
|
|
ElementState::Released => {
|
|
|
|
*key_counter = key_counter.checked_sub(1).unwrap_or(0)
|
|
|
|
}
|
|
|
|
};
|
2020-05-04 11:03:36 +00:00
|
|
|
callback(InputEvent::Keyboard {
|
|
|
|
seat: seat.clone(),
|
|
|
|
event: WinitKeyboardInputEvent {
|
2020-03-21 11:04:03 +00:00
|
|
|
time,
|
|
|
|
key: scancode,
|
|
|
|
count: *key_counter,
|
|
|
|
state,
|
|
|
|
},
|
2020-05-04 11:03:36 +00:00
|
|
|
});
|
2020-03-21 11:04:03 +00:00
|
|
|
}
|
2020-05-04 11:03:36 +00:00
|
|
|
WindowEvent::CursorMoved { position, .. } => {
|
2020-03-23 10:02:29 +00:00
|
|
|
let lpos = position.to_logical(window_size.borrow().scale_factor);
|
2020-05-04 11:03:36 +00:00
|
|
|
callback(InputEvent::PointerMotionAbsolute {
|
|
|
|
seat: seat.clone(),
|
|
|
|
event: WinitMouseMovedEvent {
|
2020-03-21 11:04:03 +00:00
|
|
|
size: window_size.clone(),
|
|
|
|
time,
|
2020-03-23 10:02:29 +00:00
|
|
|
logical_position: lpos,
|
2020-03-21 11:04:03 +00:00
|
|
|
},
|
2020-05-04 11:03:36 +00:00
|
|
|
});
|
2020-03-21 11:04:03 +00:00
|
|
|
}
|
2020-05-04 11:03:36 +00:00
|
|
|
WindowEvent::MouseWheel { delta, .. } => {
|
2020-03-21 11:04:03 +00:00
|
|
|
let event = WinitMouseWheelEvent { time, delta };
|
2020-05-04 11:03:36 +00:00
|
|
|
callback(InputEvent::PointerAxis {
|
|
|
|
seat: seat.clone(),
|
|
|
|
event,
|
|
|
|
});
|
2020-03-21 11:04:03 +00:00
|
|
|
}
|
2020-05-04 11:03:36 +00:00
|
|
|
WindowEvent::MouseInput { state, button, .. } => {
|
|
|
|
callback(InputEvent::PointerButton {
|
|
|
|
seat: seat.clone(),
|
|
|
|
event: WinitMouseInputEvent { time, button, state },
|
|
|
|
});
|
2020-03-21 11:04:03 +00:00
|
|
|
}
|
2020-05-04 11:03:36 +00:00
|
|
|
|
|
|
|
WindowEvent::Touch(Touch {
|
|
|
|
phase: TouchPhase::Started,
|
|
|
|
location,
|
|
|
|
id,
|
|
|
|
..
|
|
|
|
}) => {
|
|
|
|
callback(InputEvent::TouchDown {
|
|
|
|
seat: seat.clone(),
|
|
|
|
event: WinitTouchStartedEvent {
|
2020-03-21 11:04:03 +00:00
|
|
|
size: window_size.clone(),
|
|
|
|
time,
|
|
|
|
location: location.into(),
|
|
|
|
id,
|
|
|
|
},
|
2020-05-04 11:03:36 +00:00
|
|
|
});
|
2020-03-21 11:04:03 +00:00
|
|
|
}
|
2020-05-04 11:03:36 +00:00
|
|
|
WindowEvent::Touch(Touch {
|
|
|
|
phase: TouchPhase::Moved,
|
|
|
|
location,
|
|
|
|
id,
|
|
|
|
..
|
|
|
|
}) => {
|
|
|
|
callback(InputEvent::TouchMotion {
|
|
|
|
seat: seat.clone(),
|
|
|
|
event: WinitTouchMovedEvent {
|
2020-03-21 11:04:03 +00:00
|
|
|
size: window_size.clone(),
|
|
|
|
time,
|
|
|
|
location: location.into(),
|
|
|
|
id,
|
|
|
|
},
|
2020-05-04 11:03:36 +00:00
|
|
|
});
|
2020-03-21 11:04:03 +00:00
|
|
|
}
|
2020-05-04 11:03:36 +00:00
|
|
|
|
|
|
|
WindowEvent::Touch(Touch {
|
|
|
|
phase: TouchPhase::Ended,
|
|
|
|
location,
|
|
|
|
id,
|
|
|
|
..
|
|
|
|
}) => {
|
|
|
|
callback(InputEvent::TouchMotion {
|
|
|
|
seat: seat.clone(),
|
|
|
|
event: WinitTouchMovedEvent {
|
2020-03-21 11:04:03 +00:00
|
|
|
size: window_size.clone(),
|
|
|
|
time,
|
|
|
|
location: location.into(),
|
|
|
|
id,
|
|
|
|
},
|
2020-05-04 11:03:36 +00:00
|
|
|
});
|
|
|
|
callback(InputEvent::TouchUp {
|
|
|
|
seat: seat.clone(),
|
|
|
|
event: WinitTouchEndedEvent { time, id },
|
|
|
|
})
|
2020-03-21 11:04:03 +00:00
|
|
|
}
|
2020-05-04 11:03:36 +00:00
|
|
|
|
|
|
|
WindowEvent::Touch(Touch {
|
|
|
|
phase: TouchPhase::Cancelled,
|
|
|
|
id,
|
|
|
|
..
|
|
|
|
}) => {
|
|
|
|
callback(InputEvent::TouchCancel {
|
|
|
|
seat: seat.clone(),
|
|
|
|
event: WinitTouchCancelledEvent { time, id },
|
|
|
|
});
|
2020-03-21 11:04:03 +00:00
|
|
|
}
|
2020-05-04 11:03:36 +00:00
|
|
|
WindowEvent::CloseRequested | WindowEvent::Destroyed => {
|
2020-03-21 11:04:03 +00:00
|
|
|
warn!(logger, "Window closed");
|
|
|
|
*closed_ptr = true;
|
2020-04-10 15:01:49 +00:00
|
|
|
}
|
|
|
|
_ => {}
|
2017-06-04 21:13:19 +00:00
|
|
|
}
|
2020-04-10 15:01:49 +00:00
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
});
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if closed {
|
|
|
|
Err(WinitInputError::WindowClosed)
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<WinitMouseButton> for MouseButton {
|
|
|
|
fn from(button: WinitMouseButton) -> MouseButton {
|
|
|
|
match button {
|
|
|
|
WinitMouseButton::Left => MouseButton::Left,
|
|
|
|
WinitMouseButton::Right => MouseButton::Right,
|
|
|
|
WinitMouseButton::Middle => MouseButton::Middle,
|
2021-02-22 19:27:46 +00:00
|
|
|
WinitMouseButton::Other(num) => MouseButton::Other(num as u8),
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<ElementState> for KeyState {
|
|
|
|
fn from(state: ElementState) -> Self {
|
|
|
|
match state {
|
|
|
|
ElementState::Pressed => KeyState::Pressed,
|
|
|
|
ElementState::Released => KeyState::Released,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<ElementState> for MouseButtonState {
|
|
|
|
fn from(state: ElementState) -> Self {
|
|
|
|
match state {
|
|
|
|
ElementState::Pressed => MouseButtonState::Pressed,
|
|
|
|
ElementState::Released => MouseButtonState::Released,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|