extern crate winit;
#[cfg(feature="use-vulkano")]
extern crate vulkano;
#[cfg(feature="use-vulkano")]
extern crate vulkano_win;
extern crate input;
extern crate window;
use std::time::Duration;
use std::collections::VecDeque;
#[cfg(feature="use-vulkano")]
use std::sync::Arc;
#[cfg(feature="use-vulkano")]
use vulkano::{
swapchain::Surface,
instance::Instance
};
use winit::{
EventsLoop,
Window as OriginalWinitWindow,
WindowBuilder,
Event as WinitEvent,
WindowEvent,
ElementState,
MouseButton as WinitMouseButton,
KeyboardInput,
MouseScrollDelta,
dpi::{LogicalPosition, LogicalSize}
};
use input::{Input, CloseArgs, Motion, Button, MouseButton, Key, ButtonState, ButtonArgs};
use window::{Window, Size, WindowSettings, Position, AdvancedWindow};
#[cfg(feature="use-vulkano")]
pub use vulkano_win::required_extensions;
pub struct WinitWindow {
pub events_loop: EventsLoop,
#[cfg(feature="use-vulkano")]
surface: Arc<Surface<OriginalWinitWindow>>,
#[cfg(not(feature="use-vulkano"))]
window: OriginalWinitWindow,
should_close: bool,
queued_events: VecDeque<Input>,
last_cursor: LogicalPosition,
cursor_accumulator: LogicalPosition,
title: String,
capture_cursor: bool,
}
impl WinitWindow {
#[cfg(feature="use-vulkano")]
pub fn new_vulkano(instance: Arc<Instance>, settings: &WindowSettings) -> Self {
use vulkano_win::VkSurfaceBuild;
let events_loop = EventsLoop::new();
let surface = WindowBuilder::new()
.with_dimensions(LogicalSize::new(settings.get_size().width.into(), settings.get_size().height.into()))
.with_title(settings.get_title())
.build_vk_surface(&events_loop, instance)
.unwrap();
WinitWindow {
surface,
events_loop,
should_close: false,
queued_events: VecDeque::new(),
last_cursor: LogicalPosition::new(0.0, 0.0),
cursor_accumulator: LogicalPosition::new(0.0, 0.0),
title: settings.get_title(),
capture_cursor: false,
}
}
#[cfg(not(feature="use-vulkano"))]
pub fn new(settings: &WindowSettings) -> Self {
let events_loop = EventsLoop::new();
let window = WindowBuilder::new()
.with_dimensions(LogicalSize::new(settings.get_size().width.into(), settings.get_size().height.into()))
.with_title(settings.get_title())
.build(&events_loop)
.unwrap();
WinitWindow {
window,
events_loop,
should_close: false,
queued_events: VecDeque::new(),
last_cursor: LogicalPosition::new(0.0, 0.0),
cursor_accumulator: LogicalPosition::new(0.0, 0.0),
title: settings.get_title(),
capture_cursor: false,
}
}
#[cfg(feature="use-vulkano")]
pub fn get_window(&self) -> &OriginalWinitWindow {
self.surface.window()
}
#[cfg(not(feature="use-vulkano"))]
pub fn get_window(&self) -> &OriginalWinitWindow {
&self.window
}
}
impl Window for WinitWindow {
fn set_should_close(&mut self, value: bool) {
self.should_close = value;
}
fn should_close(&self) -> bool {
self.should_close
}
fn size(&self) -> Size {
let (w, h) = self.get_window().get_inner_size().map(|x| x.into()).unwrap_or((1, 1));
let hidpi = self.get_window().get_hidpi_factor();
((w as f64 / hidpi) as u32, (h as f64 / hidpi) as u32).into()
}
fn swap_buffers(&mut self) {
if self.capture_cursor {
let mut center = self.get_window().get_inner_size().unwrap_or(LogicalSize::new(2., 2.));
center.width /= 2.;
center.height /= 2.;
self.get_window().set_cursor_position(
Into::<(f64, f64)>::into(center).into()
).unwrap();
self.queued_events.push_back(Input::Move(Motion::MouseRelative(
self.cursor_accumulator.x,
self.cursor_accumulator.y,
)));
self.cursor_accumulator = LogicalPosition::new(0.0, 0.0);
}
}
fn wait_event(&mut self) -> Input {
unimplemented!()
}
fn wait_event_timeout(&mut self, _timeout: Duration) -> Option<Input> {
unimplemented!()
}
fn poll_event(&mut self) -> Option<Input> {
let mut center = self.get_window().get_inner_size().unwrap_or(LogicalSize::new(2., 2.));
center.width /= 2.;
center.height /= 2.;
{
let queued_events = &mut self.queued_events;
let capture_cursor = self.capture_cursor;
let last_cursor = &mut self.last_cursor;
let cursor_accumulator = &mut self.cursor_accumulator;
self.events_loop.poll_events(|event| {
push_events_for(
event, queued_events, capture_cursor, center,
last_cursor, cursor_accumulator,
)
});
}
let event = self.queued_events.pop_front();
if let &Some(Input::Close(_)) = &event {
self.set_should_close(true);
}
event
}
fn draw_size(&self) -> Size {
self.get_window().get_inner_size()
.map(|size| (size.width as u32, size.height as u32))
.unwrap_or((1, 1)).into()
}
}
impl AdvancedWindow for WinitWindow {
fn get_title(&self) -> String {
self.title.clone()
}
fn set_title(&mut self, value: String) {
self.get_window().set_title(&value);
self.title = value;
}
fn get_exit_on_esc(&self) -> bool {
false
}
fn set_exit_on_esc(&mut self, _value: bool) {
}
fn set_capture_cursor(&mut self, value: bool) {
if value == self.capture_cursor {
return;
}
let window = self.get_window();
if value {
window.grab_cursor(true).unwrap();
window.hide_cursor(true);
self.cursor_accumulator = LogicalPosition::new(0.0, 0.0);
let mut center = self.get_window().get_inner_size().unwrap_or(LogicalSize::new(2., 2.));
center.width /= 2.;
center.height /= 2.;
self.last_cursor = LogicalPosition::new(center.width, center.height);
} else {
window.grab_cursor(false).unwrap();
window.hide_cursor(false);
}
self.capture_cursor = value;
}
fn get_automatic_close(&self) -> bool {
false
}
fn set_automatic_close(&mut self, _value: bool) {
}
fn show(&mut self) {
self.get_window().show();
}
fn hide(&mut self) {
self.get_window().hide();
}
fn get_position(&self) -> Option<Position> {
self.get_window().get_position().map(|p| Position { x: p.x as i32, y: p.y as i32 })
}
fn set_position<P: Into<Position>>(&mut self, val: P) {
let val = val.into();
self.get_window().set_position(LogicalPosition::new(val.x as f64, val.y as f64))
}
fn set_size<S: Into<Size>>(&mut self, size: S) {
let size: Size = size.into();
let hidpi = self.get_window().get_hidpi_factor();
self.get_window().set_inner_size(LogicalSize::new(
size.width as f64 * hidpi,
size.height as f64 * hidpi
));
}
}
fn push_events_for(
event: WinitEvent, queue: &mut VecDeque<Input>,
capture_cursor: bool, center: LogicalSize,
last_cursor: &mut LogicalPosition, cursor_accumulator: &mut LogicalPosition,
) {
match event {
WinitEvent::WindowEvent { event: ev, .. } => {
match ev {
WindowEvent::Resized(size) => queue.push_back(Input::Resize(size.width, size.height)),
WindowEvent::CloseRequested => queue.push_back(Input::Close(CloseArgs)),
WindowEvent::ReceivedCharacter(c) => {
match c {
'\u{7f}' | '\u{1b}' | '\u{8}' | '\r' | '\n' | '\t' => return,
_ => ()
};
queue.push_back(Input::Text(c.to_string()));
},
WindowEvent::Focused(focused) => queue.push_back(Input::Focus(focused)),
WindowEvent::KeyboardInput { device_id: _, input } => {
queue.push_back(map_keyboard_input(&input));
},
WindowEvent::CursorMoved { device_id: _, position, modifiers: _ } => {
if capture_cursor {
let prev_last_cursor = *last_cursor;
*last_cursor = position;
if position.x == center.width && position.y == center.height {
return;
}
cursor_accumulator.x += position.x - prev_last_cursor.x as f64;
cursor_accumulator.y += position.y - prev_last_cursor.y as f64;
return;
} else {
queue.push_back(Input::Move(Motion::MouseCursor(position.x, position.y)));
}
},
WindowEvent::CursorEntered { device_id: _ } =>
queue.push_back(Input::Cursor(true)),
WindowEvent::CursorLeft { device_id: _ } =>
queue.push_back(Input::Cursor(false)),
WindowEvent::MouseWheel { device_id: _, delta, phase: _, modifiers: _ } => {
queue.push_back(match delta {
MouseScrollDelta::PixelDelta(LogicalPosition{x, y}) =>
Input::Move(Motion::MouseScroll(x as f64, y as f64)),
MouseScrollDelta::LineDelta(x, y) =>
Input::Move(Motion::MouseScroll(x as f64, y as f64)),
});
},
WindowEvent::MouseInput { device_id: _, state, button, modifiers: _ } => {
let button = map_mouse_button(button);
let state = if state == ElementState::Pressed {
ButtonState::Press
} else {
ButtonState::Release
};
queue.push_back(Input::Button(ButtonArgs {
state: state,
button: Button::Mouse(button),
scancode: None,
}));
},
_ => (),
}
},
_ => (),
}
}
fn map_keyboard_input(input: &KeyboardInput) -> Input {
use winit::VirtualKeyCode::*;
let key = if let Some(vk) = input.virtual_keycode {
match vk {
Key1 => Key::D1,
Key2 => Key::D2,
Key3 => Key::D3,
Key4 => Key::D4,
Key5 => Key::D5,
Key6 => Key::D6,
Key7 => Key::D7,
Key8 => Key::D8,
Key9 => Key::D9,
Key0 => Key::D0,
A => Key::A,
B => Key::B,
C => Key::C,
D => Key::D,
E => Key::E,
F => Key::F,
G => Key::G,
H => Key::H,
I => Key::I,
J => Key::J,
K => Key::K,
L => Key::L,
M => Key::M,
N => Key::N,
O => Key::O,
P => Key::P,
Q => Key::Q,
R => Key::R,
S => Key::S,
T => Key::T,
U => Key::U,
V => Key::V,
W => Key::W,
X => Key::X,
Y => Key::Y,
Z => Key::Z,
Escape => Key::Escape,
F1 => Key::F1,
F2 => Key::F2,
F3 => Key::F3,
F4 => Key::F4,
F5 => Key::F5,
F6 => Key::F6,
F7 => Key::F7,
F8 => Key::F8,
F9 => Key::F9,
F10 => Key::F10,
F11 => Key::F11,
F12 => Key::F12,
F13 => Key::F13,
F14 => Key::F14,
F15 => Key::F15,
Delete => Key::Delete,
Left => Key::Left,
Up => Key::Up,
Right => Key::Right,
Down => Key::Down,
Back => Key::Backspace,
Return => Key::Return,
Space => Key::Space,
LAlt => Key::LAlt,
LControl => Key::LCtrl,
LWin => Key::Menu,
LShift => Key::LShift,
RAlt => Key::LAlt,
RControl => Key::RCtrl,
RWin => Key::Menu,
RShift => Key::RShift,
Tab => Key::Tab,
_ => Key::Unknown,
}
} else {
Key::Unknown
};
let state = if input.state == ElementState::Pressed {
ButtonState::Press
} else {
ButtonState::Release
};
Input::Button(ButtonArgs {
state: state,
button: Button::Keyboard(key),
scancode: Some(input.scancode as i32),
})
}
fn map_mouse_button(button: WinitMouseButton) -> MouseButton {
match button {
WinitMouseButton::Left => MouseButton::Left,
WinitMouseButton::Right => MouseButton::Right,
WinitMouseButton::Middle => MouseButton::Middle,
WinitMouseButton::Other(4) => MouseButton::X1,
WinitMouseButton::Other(5) => MouseButton::X2,
WinitMouseButton::Other(6) => MouseButton::Button6,
WinitMouseButton::Other(7) => MouseButton::Button7,
WinitMouseButton::Other(8) => MouseButton::Button8,
_ => MouseButton::Unknown,
}
}