2017-05-21 20:40:15 +00:00
|
|
|
//! Implementation of backend traits for types provided by `winit`
|
|
|
|
|
2018-01-07 21:30:38 +00:00
|
|
|
use backend::graphics::egl::context::GlAttributes;
|
2017-12-21 15:01:16 +00:00
|
|
|
use backend::graphics::egl::error as egl_error;
|
2018-01-05 19:04:46 +00:00
|
|
|
use backend::graphics::egl::error::Result as EGLResult;
|
2017-12-21 15:01:16 +00:00
|
|
|
use backend::graphics::egl::native;
|
2018-01-07 21:30:38 +00:00
|
|
|
use backend::graphics::egl::wayland::{EGLDisplay, EGLWaylandExtensions};
|
2018-09-24 22:32:09 +00:00
|
|
|
use backend::graphics::egl::{EGLContext, EGLGraphicsBackend, EGLSurface, PixelFormat, SwapBuffersError};
|
|
|
|
use backend::graphics::GraphicsBackend;
|
|
|
|
use backend::input::{
|
|
|
|
Axis, AxisSource, Event as BackendEvent, InputBackend, InputHandler, KeyState, KeyboardKeyEvent,
|
|
|
|
MouseButton, MouseButtonState, PointerAxisEvent, PointerButtonEvent, PointerMotionAbsoluteEvent, Seat,
|
|
|
|
SeatCapabilities, TouchCancelEvent, TouchDownEvent, TouchMotionEvent, TouchSlot, TouchUpEvent,
|
|
|
|
UnusedEvent,
|
|
|
|
};
|
2017-10-08 14:18:56 +00:00
|
|
|
use nix::libc::c_void;
|
2017-05-18 20:28:02 +00:00
|
|
|
use std::cmp;
|
2017-09-18 14:58:20 +00:00
|
|
|
use std::error;
|
2017-05-18 20:28:02 +00:00
|
|
|
use std::fmt;
|
|
|
|
use std::rc::Rc;
|
2018-03-17 15:15:23 +00:00
|
|
|
use std::time::Instant;
|
2017-12-21 15:01:16 +00:00
|
|
|
use wayland_client::egl as wegl;
|
2018-04-18 07:58:32 +00:00
|
|
|
use wayland_server::Display;
|
2018-09-26 05:36:18 +00:00
|
|
|
use winit::dpi::{LogicalPosition, LogicalSize};
|
2018-09-24 22:32:09 +00:00
|
|
|
use winit::{
|
|
|
|
ElementState, Event, EventsLoop, KeyboardInput, MouseButton as WinitMouseButton, MouseCursor,
|
|
|
|
MouseScrollDelta, Touch, TouchPhase, Window as WinitWindow, WindowBuilder, WindowEvent,
|
|
|
|
};
|
2017-09-13 20:51:35 +00:00
|
|
|
|
2017-09-18 14:58:20 +00:00
|
|
|
error_chain! {
|
|
|
|
errors {
|
|
|
|
#[doc = "Failed to initialize a window"]
|
|
|
|
InitFailed {
|
|
|
|
description("Failed to initialize a window")
|
|
|
|
}
|
2017-12-21 15:01:16 +00:00
|
|
|
|
|
|
|
#[doc = "Context creation is not supported on the current window system"]
|
|
|
|
NotSupported {
|
|
|
|
description("Context creation is not supported on the current window system.")
|
|
|
|
}
|
2017-09-18 14:58:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
links {
|
2017-12-21 15:01:16 +00:00
|
|
|
EGL(egl_error::Error, egl_error::ErrorKind) #[doc = "EGL error"];
|
2017-09-18 14:58:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-21 15:01:16 +00:00
|
|
|
enum Window {
|
|
|
|
Wayland {
|
|
|
|
context: EGLContext<native::Wayland, WinitWindow>,
|
|
|
|
surface: EGLSurface<wegl::WlEglSurface>,
|
|
|
|
},
|
|
|
|
X11 {
|
|
|
|
context: EGLContext<native::X11, WinitWindow>,
|
|
|
|
surface: EGLSurface<native::XlibWindow>,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Window {
|
|
|
|
fn window(&self) -> &WinitWindow {
|
2018-06-28 09:33:49 +00:00
|
|
|
match *self {
|
|
|
|
Window::Wayland { ref context, .. } => &**context,
|
|
|
|
Window::X11 { ref context, .. } => &**context,
|
2017-12-21 15:01:16 +00:00
|
|
|
}
|
2017-09-18 14:58:20 +00:00
|
|
|
}
|
|
|
|
}
|
2017-12-21 15:01:16 +00:00
|
|
|
|
2017-05-18 20:28:02 +00:00
|
|
|
/// Window with an active EGL Context created by `winit`. Implements the
|
|
|
|
/// `EGLGraphicsBackend` graphics backend trait
|
|
|
|
pub struct WinitGraphicsBackend {
|
|
|
|
window: Rc<Window>,
|
2017-06-04 21:11:26 +00:00
|
|
|
logger: ::slog::Logger,
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Abstracted event loop of a `winit` `Window` implementing the `InputBackend` trait
|
|
|
|
///
|
2017-05-21 20:40:15 +00:00
|
|
|
/// You need to call `dispatch_new_events` periodically to receive any events.
|
2017-05-18 20:28:02 +00:00
|
|
|
pub struct WinitInputBackend {
|
|
|
|
events_loop: EventsLoop,
|
2018-01-11 01:01:22 +00:00
|
|
|
events_handler: Option<Box<WinitEventsHandler>>,
|
2017-05-18 20:28:02 +00:00
|
|
|
window: Rc<Window>,
|
2018-03-17 15:15:23 +00:00
|
|
|
time: Instant,
|
2017-05-18 20:28:02 +00:00
|
|
|
key_counter: u32,
|
|
|
|
seat: Seat,
|
|
|
|
input_config: (),
|
|
|
|
handler: Option<Box<InputHandler<WinitInputBackend> + 'static>>,
|
2017-06-04 21:11:26 +00:00
|
|
|
logger: ::slog::Logger,
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Create a new `WinitGraphicsBackend`, which implements the `EGLGraphicsBackend`
|
2017-05-21 20:40:15 +00:00
|
|
|
/// graphics backend trait and a corresponding `WinitInputBackend`, which implements
|
|
|
|
/// the `InputBackend` trait
|
2017-09-18 14:58:20 +00:00
|
|
|
pub fn init<L>(logger: L) -> Result<(WinitGraphicsBackend, WinitInputBackend)>
|
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()
|
2018-09-26 05:36:18 +00:00
|
|
|
.with_dimensions(LogicalSize::new(1280.0, 800.0))
|
2017-06-20 09:31:18 +00:00
|
|
|
.with_title("Smithay")
|
|
|
|
.with_visibility(true),
|
|
|
|
logger,
|
|
|
|
)
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
2017-05-21 20:40:15 +00:00
|
|
|
/// Create a new `WinitGraphicsBackend`, which implements the `EGLGraphicsBackend`
|
|
|
|
/// graphics backend trait, from a given `WindowBuilder` 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,
|
2017-12-15 17:38:10 +00:00
|
|
|
) -> Result<(WinitGraphicsBackend, WinitInputBackend)>
|
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 {
|
|
|
|
version: None,
|
|
|
|
profile: None,
|
|
|
|
debug: cfg!(debug_assertions),
|
|
|
|
vsync: true,
|
|
|
|
},
|
|
|
|
logger,
|
|
|
|
)
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Create a new `WinitGraphicsBackend`, which implements the `EGLGraphicsBackend`
|
2017-05-21 20:40:15 +00:00
|
|
|
/// graphics backend trait, from a given `WindowBuilder` 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,
|
2017-12-15 17:38:10 +00:00
|
|
|
) -> Result<(WinitGraphicsBackend, WinitInputBackend)>
|
2017-06-20 09:31:18 +00:00
|
|
|
where
|
|
|
|
L: Into<Option<::slog::Logger>>,
|
2017-06-04 21:11:26 +00:00
|
|
|
{
|
|
|
|
let log = ::slog_or_stdlog(logger).new(o!("smithay_module" => "backend_winit"));
|
|
|
|
info!(log, "Initializing a winit backend");
|
|
|
|
|
2017-05-18 20:28:02 +00:00
|
|
|
let events_loop = EventsLoop::new();
|
2018-09-24 22:32:09 +00:00
|
|
|
let winit_window = builder.build(&events_loop).chain_err(|| ErrorKind::InitFailed)?;
|
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();
|
2017-12-21 15:01:16 +00:00
|
|
|
let window = Rc::new(
|
|
|
|
if native::NativeDisplay::<native::Wayland>::is_backend(&winit_window) {
|
2018-01-07 21:30:38 +00:00
|
|
|
let context =
|
|
|
|
EGLContext::<native::Wayland, WinitWindow>::new(winit_window, attributes, reqs, log.clone())?;
|
2017-12-21 15:01:16 +00:00
|
|
|
let surface = context.create_surface(())?;
|
2018-01-07 21:30:38 +00:00
|
|
|
Window::Wayland { context, surface }
|
2017-12-21 15:01:16 +00:00
|
|
|
} else if native::NativeDisplay::<native::X11>::is_backend(&winit_window) {
|
2018-01-07 21:30:38 +00:00
|
|
|
let context =
|
|
|
|
EGLContext::<native::X11, WinitWindow>::new(winit_window, attributes, reqs, log.clone())?;
|
2017-12-21 15:01:16 +00:00
|
|
|
let surface = context.create_surface(())?;
|
2018-01-07 21:30:38 +00:00
|
|
|
Window::X11 { context, surface }
|
2017-12-21 15:01:16 +00:00
|
|
|
} else {
|
|
|
|
bail!(ErrorKind::NotSupported);
|
2018-01-07 21:30:38 +00:00
|
|
|
},
|
2017-12-21 15:01:16 +00:00
|
|
|
);
|
2017-05-18 20:28:02 +00:00
|
|
|
|
2017-06-20 09:31:18 +00:00
|
|
|
Ok((
|
|
|
|
WinitGraphicsBackend {
|
2017-05-21 20:40:15 +00:00
|
|
|
window: window.clone(),
|
2017-06-04 21:11:26 +00:00
|
|
|
logger: log.new(o!("smithay_winit_component" => "graphics")),
|
2017-05-21 20:40:15 +00:00
|
|
|
},
|
|
|
|
WinitInputBackend {
|
2017-09-13 20:51:35 +00:00
|
|
|
events_loop,
|
2018-01-11 01:01:22 +00:00
|
|
|
events_handler: None,
|
2017-09-13 20:51:35 +00:00
|
|
|
window,
|
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-05-21 20:40:15 +00:00
|
|
|
input_config: (),
|
|
|
|
handler: None,
|
2017-06-04 21:11:26 +00:00
|
|
|
logger: log.new(o!("smithay_winit_component" => "input")),
|
2017-06-20 09:31:18 +00:00
|
|
|
},
|
|
|
|
))
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
2018-01-11 01:01:22 +00:00
|
|
|
/// Handler trait to recieve window-related events to provide a better *nested* experience.
|
|
|
|
pub trait WinitEventsHandler {
|
|
|
|
/// The window was resized, can be used to adjust the associated `wayland::output::Output`s mode.
|
2018-04-18 07:58:32 +00:00
|
|
|
fn resized(&mut self, width: u32, height: u32);
|
2018-01-11 01:01:22 +00:00
|
|
|
/// The window was moved
|
2018-04-18 07:58:32 +00:00
|
|
|
fn moved(&mut self, x: i32, h: i32);
|
2018-01-11 01:01:22 +00:00
|
|
|
/// The window gained or lost focus
|
2018-04-18 07:58:32 +00:00
|
|
|
fn focus_changed(&mut self, focused: bool);
|
2018-01-11 01:01:22 +00:00
|
|
|
/// The window needs to be redrawn
|
2018-04-18 07:58:32 +00:00
|
|
|
fn refresh(&mut self);
|
2018-01-11 01:01:22 +00:00
|
|
|
/// The window's hidpi factor changed
|
2018-04-18 07:58:32 +00:00
|
|
|
fn hidpi_changed(&mut self, scale: f32);
|
2018-01-11 01:01:22 +00:00
|
|
|
}
|
|
|
|
|
2018-01-11 00:45:38 +00:00
|
|
|
impl WinitGraphicsBackend {
|
|
|
|
/// Get a reference to the internally used `winit::Window`
|
|
|
|
pub fn winit_window(&self) -> &WinitWindow {
|
|
|
|
self.window.window()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-18 20:28:02 +00:00
|
|
|
impl GraphicsBackend for WinitGraphicsBackend {
|
|
|
|
type CursorFormat = MouseCursor;
|
2017-09-13 20:51:35 +00:00
|
|
|
type Error = ();
|
2017-05-18 20:28:02 +00:00
|
|
|
|
2017-09-18 14:58:20 +00:00
|
|
|
fn set_cursor_position(&self, x: u32, y: u32) -> ::std::result::Result<(), ()> {
|
2017-06-04 21:11:26 +00:00
|
|
|
debug!(self.logger, "Setting cursor position to {:?}", (x, y));
|
2018-09-26 05:36:18 +00:00
|
|
|
self.window
|
|
|
|
.window()
|
|
|
|
.set_cursor_position(LogicalPosition::new(x as f64, y as f64))
|
|
|
|
.map_err(|err| {
|
|
|
|
debug!(self.logger, "{}", err);
|
|
|
|
})
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
2017-12-15 17:38:10 +00:00
|
|
|
fn set_cursor_representation(
|
2018-04-18 07:58:32 +00:00
|
|
|
&self,
|
|
|
|
cursor: &Self::CursorFormat,
|
|
|
|
_hotspot: (u32, u32),
|
2017-12-15 17:38:10 +00:00
|
|
|
) -> ::std::result::Result<(), ()> {
|
2017-06-04 21:13:19 +00:00
|
|
|
// Cannot log this one, as `CursorFormat` is not `Debug` and should not be
|
2017-06-04 21:11:26 +00:00
|
|
|
debug!(self.logger, "Changing cursor representation");
|
2017-12-21 15:01:16 +00:00
|
|
|
self.window.window().set_cursor(*cursor);
|
2017-09-13 20:51:35 +00:00
|
|
|
Ok(())
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl EGLGraphicsBackend for WinitGraphicsBackend {
|
2017-09-18 14:58:20 +00:00
|
|
|
fn swap_buffers(&self) -> ::std::result::Result<(), SwapBuffersError> {
|
2017-06-04 21:11:26 +00:00
|
|
|
trace!(self.logger, "Swapping buffers");
|
2017-12-21 15:01:16 +00:00
|
|
|
match *self.window {
|
|
|
|
Window::Wayland { ref surface, .. } => surface.swap_buffers(),
|
|
|
|
Window::X11 { ref surface, .. } => surface.swap_buffers(),
|
2017-09-28 17:34:31 +00:00
|
|
|
}
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsafe fn get_proc_address(&self, symbol: &str) -> *const c_void {
|
2017-06-04 21:11:26 +00:00
|
|
|
trace!(self.logger, "Getting symbol for {:?}", symbol);
|
2017-12-21 15:01:16 +00:00
|
|
|
match *self.window {
|
|
|
|
Window::Wayland { ref context, .. } => context.get_proc_address(symbol),
|
|
|
|
Window::X11 { ref context, .. } => context.get_proc_address(symbol),
|
|
|
|
}
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn get_framebuffer_dimensions(&self) -> (u32, u32) {
|
2017-09-05 17:51:05 +00:00
|
|
|
self.window
|
2017-12-21 15:01:16 +00:00
|
|
|
.window()
|
|
|
|
.get_inner_size()
|
2017-09-05 17:51:05 +00:00
|
|
|
.expect("Window does not exist anymore")
|
2018-09-26 05:36:18 +00:00
|
|
|
.into()
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn is_current(&self) -> bool {
|
2017-12-21 15:01:16 +00:00
|
|
|
match *self.window {
|
2018-01-07 21:30:38 +00:00
|
|
|
Window::Wayland {
|
|
|
|
ref context,
|
|
|
|
ref surface,
|
|
|
|
} => context.is_current() && surface.is_current(),
|
|
|
|
Window::X11 {
|
|
|
|
ref context,
|
|
|
|
ref surface,
|
|
|
|
} => context.is_current() && surface.is_current(),
|
2017-12-21 15:01:16 +00:00
|
|
|
}
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
2017-09-18 14:58:20 +00:00
|
|
|
unsafe fn make_current(&self) -> ::std::result::Result<(), SwapBuffersError> {
|
2017-12-21 15:01:16 +00:00
|
|
|
trace!(self.logger, "Setting EGL context to be the current context");
|
|
|
|
match *self.window {
|
|
|
|
Window::Wayland { ref surface, .. } => surface.make_current(),
|
|
|
|
Window::X11 { ref surface, .. } => surface.make_current(),
|
|
|
|
}
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn get_pixel_format(&self) -> PixelFormat {
|
2017-12-21 15:01:16 +00:00
|
|
|
match *self.window {
|
|
|
|
Window::Wayland { ref context, .. } => context.get_pixel_format(),
|
|
|
|
Window::X11 { ref context, .. } => context.get_pixel_format(),
|
|
|
|
}
|
|
|
|
}
|
2018-01-05 19:04:46 +00:00
|
|
|
}
|
2017-12-21 15:01:16 +00:00
|
|
|
|
2018-01-05 19:04:46 +00:00
|
|
|
impl EGLWaylandExtensions for WinitGraphicsBackend {
|
|
|
|
fn bind_wl_display(&self, display: &Display) -> EGLResult<EGLDisplay> {
|
2017-12-21 15:01:16 +00:00
|
|
|
match *self.window {
|
|
|
|
Window::Wayland { ref context, .. } => context.bind_wl_display(display),
|
|
|
|
Window::X11 { ref context, .. } => context.bind_wl_display(display),
|
2018-01-05 19:04:46 +00:00
|
|
|
}
|
2017-12-21 15:01:16 +00:00
|
|
|
}
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Errors that may happen when driving the event loop of `WinitInputBackend`
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub enum WinitInputError {
|
|
|
|
/// The underlying `winit` `Window` was closed. No further events can be processed.
|
|
|
|
///
|
2017-05-21 20:40:15 +00:00
|
|
|
/// See `WinitInputBackend::dispatch_new_events`.
|
2017-05-18 20:28:02 +00:00
|
|
|
WindowClosed,
|
|
|
|
}
|
|
|
|
|
2017-09-18 14:58:20 +00:00
|
|
|
impl error::Error for WinitInputError {
|
2017-05-18 20:28:02 +00:00
|
|
|
fn description(&self) -> &str {
|
|
|
|
match *self {
|
|
|
|
WinitInputError::WindowClosed => "Glutin Window was closed",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for WinitInputError {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2017-09-18 14:58:20 +00:00
|
|
|
use std::error::Error;
|
2017-05-18 20:28:02 +00:00
|
|
|
write!(f, "{}", self.description())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
/// Winit-Backend internal event wrapping winit's types into a `KeyboardKeyEvent`
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
/// Winit-Backend internal event wrapping winit's types into a `PointerMotionAbsoluteEvent`
|
|
|
|
pub struct WinitMouseMovedEvent {
|
|
|
|
window: Rc<Window>,
|
|
|
|
time: u32,
|
2017-06-02 11:15:31 +00:00
|
|
|
x: f64,
|
|
|
|
y: f64,
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl BackendEvent for WinitMouseMovedEvent {
|
|
|
|
fn time(&self) -> u32 {
|
|
|
|
self.time
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PointerMotionAbsoluteEvent for WinitMouseMovedEvent {
|
|
|
|
fn x(&self) -> f64 {
|
2017-06-02 11:15:31 +00:00
|
|
|
self.x
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn y(&self) -> f64 {
|
2017-06-02 11:15:31 +00:00
|
|
|
self.y
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn x_transformed(&self, width: u32) -> u32 {
|
2018-03-13 16:53:10 +00:00
|
|
|
cmp::max(
|
2018-09-26 05:36:18 +00:00
|
|
|
(self.x * width as f64 / self
|
|
|
|
.window
|
|
|
|
.window()
|
|
|
|
.get_inner_size()
|
|
|
|
.unwrap_or(LogicalSize::new(width.into(), 0.0))
|
|
|
|
.width) as i32,
|
2018-03-13 16:53:10 +00:00
|
|
|
0,
|
|
|
|
) as u32
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn y_transformed(&self, height: u32) -> u32 {
|
2018-03-13 16:53:10 +00:00
|
|
|
cmp::max(
|
2018-09-26 05:36:18 +00:00
|
|
|
(self.y * height as f64 / self
|
|
|
|
.window
|
|
|
|
.window()
|
|
|
|
.get_inner_size()
|
|
|
|
.unwrap_or(LogicalSize::new(0.0, height.into()))
|
|
|
|
.height) as i32,
|
2018-03-13 16:53:10 +00:00
|
|
|
0,
|
|
|
|
) as u32
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq)]
|
|
|
|
/// Winit-Backend internal event wrapping winit's types into a `PointerAxisEvent`
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-22 15:09:58 +00:00
|
|
|
fn amount(&self, axis: &Axis) -> Option<f64> {
|
|
|
|
match (axis, self.delta) {
|
2018-09-26 05:36:18 +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,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn amount_discrete(&self, axis: &Axis) -> Option<f64> {
|
|
|
|
match (axis, self.delta) {
|
|
|
|
(&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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
/// Winit-Backend internal event wrapping winit's types into a `PointerButtonEvent`
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
/// Winit-Backend internal event wrapping winit's types into a `TouchDownEvent`
|
|
|
|
pub struct WinitTouchStartedEvent {
|
|
|
|
window: Rc<Window>,
|
|
|
|
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 {
|
|
|
|
self.location.0
|
|
|
|
}
|
|
|
|
|
|
|
|
fn y(&self) -> f64 {
|
|
|
|
self.location.1
|
|
|
|
}
|
|
|
|
|
|
|
|
fn x_transformed(&self, width: u32) -> u32 {
|
2017-06-20 09:31:18 +00:00
|
|
|
cmp::min(
|
2018-09-26 05:36:18 +00:00
|
|
|
self.location.0 as i32 * width as i32 / self
|
|
|
|
.window
|
|
|
|
.window()
|
|
|
|
.get_inner_size()
|
|
|
|
.unwrap_or(LogicalSize::new(width.into(), 0.0))
|
|
|
|
.width as i32,
|
2017-06-20 09:31:18 +00:00
|
|
|
0,
|
|
|
|
) as u32
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn y_transformed(&self, height: u32) -> u32 {
|
2017-06-20 09:31:18 +00:00
|
|
|
cmp::min(
|
2018-09-26 05:36:18 +00:00
|
|
|
self.location.1 as i32 * height as i32 / self
|
|
|
|
.window
|
|
|
|
.window()
|
|
|
|
.get_inner_size()
|
|
|
|
.unwrap_or(LogicalSize::new(0.0, height.into()))
|
|
|
|
.height as i32,
|
2017-06-20 09:31:18 +00:00
|
|
|
0,
|
|
|
|
) as u32
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
/// Winit-Backend internal event wrapping winit's types into a `TouchMotionEvent`
|
|
|
|
pub struct WinitTouchMovedEvent {
|
|
|
|
window: Rc<Window>,
|
|
|
|
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 {
|
|
|
|
self.location.0
|
|
|
|
}
|
|
|
|
|
|
|
|
fn y(&self) -> f64 {
|
|
|
|
self.location.1
|
|
|
|
}
|
|
|
|
|
|
|
|
fn x_transformed(&self, width: u32) -> u32 {
|
2018-09-26 05:36:18 +00:00
|
|
|
self.location.0 as u32 * width / self
|
|
|
|
.window
|
|
|
|
.window()
|
|
|
|
.get_inner_size()
|
|
|
|
.unwrap_or(LogicalSize::new(width.into(), 0.0))
|
|
|
|
.width as u32
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn y_transformed(&self, height: u32) -> u32 {
|
2018-09-26 05:36:18 +00:00
|
|
|
self.location.1 as u32 * height / self
|
|
|
|
.window
|
|
|
|
.window()
|
|
|
|
.get_inner_size()
|
|
|
|
.unwrap_or(LogicalSize::new(0.0, height.into()))
|
|
|
|
.height as u32
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
/// Winit-Backend internal event wrapping winit's types into a `TouchUpEvent`
|
|
|
|
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))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
/// Winit-Backend internal event wrapping winit's types into a `TouchCancelEvent`
|
|
|
|
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))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-11 01:01:22 +00:00
|
|
|
impl WinitInputBackend {
|
|
|
|
/// Set the events handler
|
|
|
|
pub fn set_events_handler<H: WinitEventsHandler + 'static>(&mut self, handler: H) {
|
|
|
|
self.events_handler = Some(Box::new(handler));
|
|
|
|
info!(self.logger, "New events handler set.");
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get a reference to the set events handler, if any
|
|
|
|
pub fn get_events_handler(&mut self) -> Option<&mut WinitEventsHandler> {
|
|
|
|
self.events_handler
|
|
|
|
.as_mut()
|
|
|
|
.map(|handler| &mut **handler as &mut WinitEventsHandler)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Clear out the currently set events handler
|
|
|
|
pub fn clear_events_handler(&mut self) {
|
|
|
|
self.events_handler = None;
|
|
|
|
info!(self.logger, "Events handler unset.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-18 20:28:02 +00:00
|
|
|
impl InputBackend for WinitInputBackend {
|
|
|
|
type InputConfig = ();
|
|
|
|
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;
|
|
|
|
|
2018-04-18 07:58:32 +00:00
|
|
|
fn set_handler<H: InputHandler<Self> + 'static>(&mut self, mut handler: H) {
|
2017-05-18 20:28:02 +00:00
|
|
|
if self.handler.is_some() {
|
2018-04-18 07:58:32 +00:00
|
|
|
self.clear_handler();
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
2017-06-04 21:11:26 +00:00
|
|
|
info!(self.logger, "New input handler set.");
|
|
|
|
trace!(self.logger, "Calling on_seat_created with {:?}", self.seat);
|
2018-04-18 07:58:32 +00:00
|
|
|
handler.on_seat_created(&self.seat);
|
2017-05-18 20:28:02 +00:00
|
|
|
self.handler = Some(Box::new(handler));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_handler(&mut self) -> Option<&mut InputHandler<Self>> {
|
2017-09-05 17:51:05 +00:00
|
|
|
self.handler
|
|
|
|
.as_mut()
|
|
|
|
.map(|handler| handler as &mut InputHandler<Self>)
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
2018-04-18 07:58:32 +00:00
|
|
|
fn clear_handler(&mut self) {
|
2017-05-18 20:28:02 +00:00
|
|
|
if let Some(mut handler) = self.handler.take() {
|
2018-09-24 22:32:09 +00:00
|
|
|
trace!(self.logger, "Calling on_seat_destroyed with {:?}", self.seat);
|
2018-04-18 07:58:32 +00:00
|
|
|
handler.on_seat_destroyed(&self.seat);
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
2017-06-04 21:11:26 +00:00
|
|
|
info!(self.logger, "Removing input handler");
|
2017-05-18 20:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn input_config(&mut self) -> &mut Self::InputConfig {
|
|
|
|
&mut self.input_config
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Processes new events of the underlying event loop to drive the set `InputHandler`.
|
|
|
|
///
|
|
|
|
/// You need to periodically call this function to keep the underlying event loop and
|
|
|
|
/// `Window` active. Otherwise the window may no respond to user interaction and no
|
|
|
|
/// input events will be received by a set `InputHandler`.
|
|
|
|
///
|
|
|
|
/// Returns an error if the `Window` the window has been closed. Calling
|
2017-05-21 20:40:15 +00:00
|
|
|
/// `dispatch_new_events` again after the `Window` has been closed is considered an
|
2017-05-18 20:28:02 +00:00
|
|
|
/// application error and unspecified baviour may occur.
|
|
|
|
///
|
|
|
|
/// The linked `WinitGraphicsBackend` will error with a lost Context and should
|
|
|
|
/// not be used anymore as well.
|
2018-04-18 07:58:32 +00:00
|
|
|
fn dispatch_new_events(&mut self) -> ::std::result::Result<(), WinitInputError> {
|
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.
|
2017-05-18 20:28:02 +00:00
|
|
|
let mut closed_ptr = &mut closed;
|
|
|
|
let mut 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;
|
|
|
|
let mut handler = self.handler.as_mut();
|
2018-01-11 01:01:22 +00:00
|
|
|
let mut events_handler = self.events_handler.as_mut();
|
2017-06-04 21:11:26 +00:00
|
|
|
let logger = &self.logger;
|
2017-05-18 20:28:02 +00:00
|
|
|
|
2017-10-05 20:13:14 +00:00
|
|
|
self.events_loop.poll_events(move |event| {
|
|
|
|
if let Event::WindowEvent { event, .. } = event {
|
2018-03-17 15:15:23 +00:00
|
|
|
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;
|
2018-01-11 01:01:22 +00:00
|
|
|
match (event, handler.as_mut(), events_handler.as_mut()) {
|
2018-09-26 05:36:18 +00:00
|
|
|
(WindowEvent::Resized(size), _, events_handler) => {
|
|
|
|
trace!(logger, "Resizing window to {:?}", size);
|
|
|
|
window.window().set_inner_size(size);
|
2018-06-28 09:33:49 +00:00
|
|
|
if let Window::Wayland { ref surface, .. } = **window {
|
2018-09-26 05:36:18 +00:00
|
|
|
surface.resize(size.width as i32, size.height as i32, 0, 0);
|
2018-06-28 09:33:49 +00:00
|
|
|
}
|
2018-01-11 01:01:22 +00:00
|
|
|
if let Some(events_handler) = events_handler {
|
2018-09-26 05:36:18 +00:00
|
|
|
events_handler.resized(size.width as u32, size.height as u32);
|
2018-01-11 01:01:22 +00:00
|
|
|
}
|
|
|
|
}
|
2018-09-26 05:36:18 +00:00
|
|
|
(WindowEvent::Moved(position), _, Some(events_handler)) => {
|
|
|
|
events_handler.moved(position.x as i32, position.y as i32)
|
|
|
|
}
|
2018-01-11 01:01:22 +00:00
|
|
|
(WindowEvent::Focused(focus), _, Some(events_handler)) => {
|
2018-04-18 07:58:32 +00:00
|
|
|
events_handler.focus_changed(focus)
|
2018-01-11 01:01:22 +00:00
|
|
|
}
|
2018-04-18 07:58:32 +00:00
|
|
|
(WindowEvent::Refresh, _, Some(events_handler)) => events_handler.refresh(),
|
2018-09-26 05:36:18 +00:00
|
|
|
(WindowEvent::HiDpiFactorChanged(factor), _, Some(events_handler)) => {
|
|
|
|
events_handler.hidpi_changed(factor as f32)
|
2017-06-04 21:13:19 +00:00
|
|
|
}
|
2017-09-05 17:51:05 +00:00
|
|
|
(
|
|
|
|
WindowEvent::KeyboardInput {
|
2018-09-24 22:32:09 +00:00
|
|
|
input: KeyboardInput { scancode, state, .. },
|
2017-09-05 17:51:05 +00:00
|
|
|
..
|
|
|
|
},
|
|
|
|
Some(handler),
|
2018-01-11 01:01:22 +00:00
|
|
|
_,
|
2017-09-05 17:51:05 +00:00
|
|
|
) => {
|
2017-06-20 09:31:18 +00:00
|
|
|
match state {
|
|
|
|
ElementState::Pressed => *key_counter += 1,
|
|
|
|
ElementState::Released => {
|
|
|
|
*key_counter = key_counter.checked_sub(1).unwrap_or(0)
|
|
|
|
}
|
2017-06-04 21:13:19 +00:00
|
|
|
};
|
2018-09-24 22:32:09 +00:00
|
|
|
trace!(logger, "Calling on_keyboard_key with {:?}", (scancode, state));
|
2017-06-20 09:31:18 +00:00
|
|
|
handler.on_keyboard_key(
|
|
|
|
seat,
|
|
|
|
WinitKeyboardInputEvent {
|
2018-03-17 15:15:23 +00:00
|
|
|
time,
|
2017-06-20 09:31:18 +00:00
|
|
|
key: scancode,
|
|
|
|
count: *key_counter,
|
2018-06-28 09:33:49 +00:00
|
|
|
state,
|
2017-06-20 09:31:18 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
2018-09-26 05:36:18 +00:00
|
|
|
(WindowEvent::CursorMoved { position, .. }, Some(handler), _) => {
|
|
|
|
trace!(logger, "Calling on_pointer_move_absolute with {:?}", position);
|
2017-06-20 09:31:18 +00:00
|
|
|
handler.on_pointer_move_absolute(
|
|
|
|
seat,
|
|
|
|
WinitMouseMovedEvent {
|
|
|
|
window: window.clone(),
|
2018-03-17 15:15:23 +00:00
|
|
|
time,
|
2018-09-26 05:36:18 +00:00
|
|
|
x: position.x,
|
|
|
|
y: position.y,
|
2017-06-20 09:31:18 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
2018-03-22 15:09:58 +00:00
|
|
|
(WindowEvent::MouseWheel { delta, .. }, Some(handler), _) => {
|
|
|
|
let event = WinitMouseWheelEvent { time, delta };
|
|
|
|
trace!(logger, "Calling on_pointer_axis with {:?}", delta);
|
2018-04-18 07:58:32 +00:00
|
|
|
handler.on_pointer_axis(seat, event);
|
2018-03-22 15:09:58 +00:00
|
|
|
}
|
2018-01-11 01:01:22 +00:00
|
|
|
(WindowEvent::MouseInput { state, button, .. }, Some(handler), _) => {
|
2018-09-24 22:32:09 +00:00
|
|
|
trace!(logger, "Calling on_pointer_button with {:?}", (button, state));
|
|
|
|
handler.on_pointer_button(seat, WinitMouseInputEvent { time, button, state })
|
2017-06-20 09:31:18 +00:00
|
|
|
}
|
2017-09-05 17:51:05 +00:00
|
|
|
(
|
|
|
|
WindowEvent::Touch(Touch {
|
|
|
|
phase: TouchPhase::Started,
|
2018-09-26 05:36:18 +00:00
|
|
|
location,
|
2017-09-05 17:51:05 +00:00
|
|
|
id,
|
|
|
|
..
|
|
|
|
}),
|
|
|
|
Some(handler),
|
2018-01-11 01:01:22 +00:00
|
|
|
_,
|
2017-09-05 17:51:05 +00:00
|
|
|
) => {
|
2018-09-26 05:36:18 +00:00
|
|
|
trace!(logger, "Calling on_touch_down at {:?}", location);
|
2017-06-20 09:31:18 +00:00
|
|
|
handler.on_touch_down(
|
|
|
|
seat,
|
|
|
|
WinitTouchStartedEvent {
|
|
|
|
window: window.clone(),
|
2018-03-17 15:15:23 +00:00
|
|
|
time,
|
2018-09-26 05:36:18 +00:00
|
|
|
location: location.into(),
|
2018-06-28 09:33:49 +00:00
|
|
|
id,
|
2017-06-20 09:31:18 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
2017-09-05 17:51:05 +00:00
|
|
|
(
|
|
|
|
WindowEvent::Touch(Touch {
|
|
|
|
phase: TouchPhase::Moved,
|
2018-09-26 05:36:18 +00:00
|
|
|
location,
|
2017-09-05 17:51:05 +00:00
|
|
|
id,
|
|
|
|
..
|
|
|
|
}),
|
|
|
|
Some(handler),
|
2018-01-11 01:01:22 +00:00
|
|
|
_,
|
2017-09-05 17:51:05 +00:00
|
|
|
) => {
|
2018-09-26 05:36:18 +00:00
|
|
|
trace!(logger, "Calling on_touch_motion at {:?}", location);
|
2017-06-20 09:31:18 +00:00
|
|
|
handler.on_touch_motion(
|
|
|
|
seat,
|
|
|
|
WinitTouchMovedEvent {
|
|
|
|
window: window.clone(),
|
2018-03-17 15:15:23 +00:00
|
|
|
time,
|
2018-09-26 05:36:18 +00:00
|
|
|
location: location.into(),
|
2018-06-28 09:33:49 +00:00
|
|
|
id,
|
2017-06-20 09:31:18 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
2017-09-05 17:51:05 +00:00
|
|
|
(
|
|
|
|
WindowEvent::Touch(Touch {
|
|
|
|
phase: TouchPhase::Ended,
|
2018-09-26 05:36:18 +00:00
|
|
|
location,
|
2017-09-05 17:51:05 +00:00
|
|
|
id,
|
|
|
|
..
|
|
|
|
}),
|
|
|
|
Some(handler),
|
2018-01-11 01:01:22 +00:00
|
|
|
_,
|
2017-09-05 17:51:05 +00:00
|
|
|
) => {
|
2018-09-26 05:36:18 +00:00
|
|
|
trace!(logger, "Calling on_touch_motion at {:?}", location);
|
2017-06-20 09:31:18 +00:00
|
|
|
handler.on_touch_motion(
|
|
|
|
seat,
|
|
|
|
WinitTouchMovedEvent {
|
|
|
|
window: window.clone(),
|
2018-03-17 15:15:23 +00:00
|
|
|
time,
|
2018-09-26 05:36:18 +00:00
|
|
|
location: location.into(),
|
2018-06-28 09:33:49 +00:00
|
|
|
id,
|
2017-06-20 09:31:18 +00:00
|
|
|
},
|
|
|
|
);
|
|
|
|
trace!(logger, "Calling on_touch_up");
|
2018-06-28 09:33:49 +00:00
|
|
|
handler.on_touch_up(seat, WinitTouchEndedEvent { time, id });
|
2017-06-20 09:31:18 +00:00
|
|
|
}
|
2017-09-05 17:51:05 +00:00
|
|
|
(
|
|
|
|
WindowEvent::Touch(Touch {
|
|
|
|
phase: TouchPhase::Cancelled,
|
|
|
|
id,
|
|
|
|
..
|
|
|
|
}),
|
|
|
|
Some(handler),
|
2018-01-11 01:01:22 +00:00
|
|
|
_,
|
2017-09-05 17:51:05 +00:00
|
|
|
) => {
|
2017-06-20 09:31:18 +00:00
|
|
|
trace!(logger, "Calling on_touch_cancel");
|
2018-06-28 09:33:49 +00:00
|
|
|
handler.on_touch_cancel(seat, WinitTouchCancelledEvent { time, id })
|
2017-06-20 09:31:18 +00:00
|
|
|
}
|
2018-05-12 10:55:37 +00:00
|
|
|
(WindowEvent::CloseRequested, _, _) | (WindowEvent::Destroyed, _, _) => {
|
2017-06-20 09:31:18 +00:00
|
|
|
warn!(logger, "Window closed");
|
|
|
|
*closed_ptr = true;
|
2017-06-04 21:13:19 +00:00
|
|
|
}
|
2017-06-20 09:31:18 +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,
|
|
|
|
WinitMouseButton::Other(num) => MouseButton::Other(num),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|