2019-01-07 21:10:31 +00:00
|
|
|
// Library
|
2019-01-11 17:30:13 +00:00
|
|
|
use glutin;
|
|
|
|
use gfx_window_glutin;
|
2019-01-12 01:14:58 +00:00
|
|
|
use vek::*;
|
2019-01-02 21:25:01 +00:00
|
|
|
|
2019-01-02 22:08:13 +00:00
|
|
|
// Crate
|
2019-01-07 21:10:31 +00:00
|
|
|
use crate::{
|
2019-01-11 23:18:34 +00:00
|
|
|
Error,
|
2019-01-11 17:30:13 +00:00
|
|
|
render::{
|
|
|
|
Renderer,
|
|
|
|
TgtColorFmt,
|
|
|
|
TgtDepthFmt,
|
|
|
|
},
|
2019-01-07 21:10:31 +00:00
|
|
|
};
|
2019-01-02 21:25:01 +00:00
|
|
|
|
|
|
|
pub struct Window {
|
2019-01-11 17:30:13 +00:00
|
|
|
events_loop: glutin::EventsLoop,
|
|
|
|
window: glutin::GlWindow,
|
2019-01-07 21:10:31 +00:00
|
|
|
renderer: Renderer,
|
2019-01-02 21:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
impl Window {
|
2019-01-11 23:18:34 +00:00
|
|
|
pub fn new() -> Result<Window, Error> {
|
2019-01-11 17:30:13 +00:00
|
|
|
let events_loop = glutin::EventsLoop::new();
|
2019-01-02 21:25:01 +00:00
|
|
|
|
2019-01-11 17:30:13 +00:00
|
|
|
let win_builder = glutin::WindowBuilder::new()
|
2019-01-07 21:10:31 +00:00
|
|
|
.with_title("Veloren (Voxygen)")
|
2019-01-11 17:30:13 +00:00
|
|
|
.with_dimensions(glutin::dpi::LogicalSize::new(800.0, 500.0))
|
2019-01-11 23:18:34 +00:00
|
|
|
.with_maximized(false);
|
2019-01-11 17:30:13 +00:00
|
|
|
|
|
|
|
let ctx_builder = glutin::ContextBuilder::new()
|
|
|
|
.with_gl(glutin::GlRequest::Specific(glutin::Api::OpenGl, (3, 2)))
|
|
|
|
.with_vsync(true);
|
|
|
|
|
|
|
|
let (
|
|
|
|
window,
|
|
|
|
device,
|
|
|
|
factory,
|
|
|
|
tgt_color_view,
|
|
|
|
tgt_depth_view,
|
|
|
|
) = gfx_window_glutin::init::<TgtColorFmt, TgtDepthFmt>(
|
|
|
|
win_builder,
|
|
|
|
ctx_builder,
|
|
|
|
&events_loop,
|
2019-01-11 23:18:34 +00:00
|
|
|
).map_err(|err| Error::BackendError(Box::new(err)))?;
|
2019-01-02 21:25:01 +00:00
|
|
|
|
2019-01-07 21:10:31 +00:00
|
|
|
let tmp = Ok(Self {
|
2019-01-02 21:25:01 +00:00
|
|
|
events_loop,
|
2019-01-11 17:30:13 +00:00
|
|
|
window,
|
|
|
|
renderer: Renderer::new(
|
|
|
|
device,
|
|
|
|
factory,
|
|
|
|
tgt_color_view,
|
|
|
|
tgt_depth_view,
|
|
|
|
)?,
|
2019-01-07 21:10:31 +00:00
|
|
|
});
|
|
|
|
tmp
|
2019-01-02 21:25:01 +00:00
|
|
|
}
|
|
|
|
|
2019-01-07 21:10:31 +00:00
|
|
|
pub fn renderer(&self) -> &Renderer { &self.renderer }
|
|
|
|
pub fn renderer_mut(&mut self) -> &mut Renderer { &mut self.renderer }
|
2019-01-02 22:08:13 +00:00
|
|
|
|
2019-01-07 21:10:31 +00:00
|
|
|
pub fn fetch_events(&mut self) -> Vec<Event> {
|
|
|
|
let mut events = vec![];
|
2019-01-02 21:25:01 +00:00
|
|
|
self.events_loop.poll_events(|event| match event {
|
2019-01-11 17:30:13 +00:00
|
|
|
glutin::Event::WindowEvent { event, .. } => match event {
|
|
|
|
glutin::WindowEvent::CloseRequested => events.push(Event::Close),
|
2019-01-11 23:18:34 +00:00
|
|
|
glutin::WindowEvent::ReceivedCharacter(c) => events.push(Event::Char(c)),
|
2019-01-02 21:25:01 +00:00
|
|
|
_ => {},
|
|
|
|
},
|
|
|
|
_ => {},
|
|
|
|
});
|
2019-01-07 21:10:31 +00:00
|
|
|
events
|
2019-01-02 21:25:01 +00:00
|
|
|
}
|
|
|
|
|
2019-01-12 01:14:58 +00:00
|
|
|
pub fn swap_buffers(&self) -> Result<(), Error> {
|
2019-01-11 17:30:13 +00:00
|
|
|
self.window.swap_buffers()
|
2019-01-11 23:18:34 +00:00
|
|
|
.map_err(|err| Error::BackendError(Box::new(err)))
|
2019-01-02 21:25:01 +00:00
|
|
|
}
|
2019-01-12 01:14:58 +00:00
|
|
|
|
|
|
|
pub fn trap_cursor(&mut self) {
|
|
|
|
self.window.hide_cursor(true);
|
|
|
|
self.window.grab_cursor(true)
|
|
|
|
.expect("Failed to grab cursor");
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn untrap_cursor(&mut self) {
|
|
|
|
self.window.hide_cursor(false);
|
|
|
|
self.window.grab_cursor(false)
|
|
|
|
.expect("Failed to ungrab cursor");
|
|
|
|
}
|
2019-01-02 21:25:01 +00:00
|
|
|
}
|
|
|
|
|
2019-01-12 01:14:58 +00:00
|
|
|
/// Represents an incoming event from the window
|
2019-01-02 21:25:01 +00:00
|
|
|
pub enum Event {
|
2019-01-12 01:14:58 +00:00
|
|
|
/// The window has been requested to close.
|
2019-01-02 21:25:01 +00:00
|
|
|
Close,
|
2019-01-12 01:14:58 +00:00
|
|
|
/// A key has been typed that corresponds to a specific character.
|
2019-01-11 23:18:34 +00:00
|
|
|
Char(char),
|
2019-01-12 01:14:58 +00:00
|
|
|
/// The cursor has been panned across the screen while trapped.
|
|
|
|
CursorPan(Vec2<f32>),
|
2019-01-02 21:25:01 +00:00
|
|
|
}
|