1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
mod window_surface;
use crate::graphics::vulkan::Instance;
use anyhow::{bail, Context, Result};
use ash::{extensions::khr::Surface, version::InstanceV1_0, vk, vk::Handle};
use std::{
ptr::null,
sync::{mpsc::Receiver, Arc},
};
pub type EventReceiver = Receiver<(f64, glfw::WindowEvent)>;
pub struct GlfwWindow {
pub glfw: glfw::Glfw,
pub window: glfw::Window,
pub event_receiver: EventReceiver,
surface: vk::SurfaceKHR,
surface_loader: Surface,
instance: Arc<Instance>,
}
impl GlfwWindow {
pub fn new<F>(create_window: F) -> Result<Self>
where
F: FnOnce(&mut glfw::Glfw) -> Result<(glfw::Window, EventReceiver)>,
{
let mut glfw = glfw::init(glfw::FAIL_ON_ERRORS)
.context("unable to setup glfw for this application")?;
let (window, event_receiver) =
Self::build_vulkan_window(&mut glfw, create_window)?;
let instance =
Instance::new(&glfw.get_required_instance_extensions().context(
"unable to get required vulkan extensions for this platform",
)?)?;
let surface = Self::create_surface(&instance, &window)?;
let surface_loader = instance.create_surface_loader();
Ok(Self {
surface,
surface_loader,
glfw,
window,
event_receiver,
instance,
})
}
#[allow(dead_code)]
pub fn fullscreen(title: &str) -> Result<Self> {
GlfwWindow::new(|glfw| {
let (window, event_receiver) = glfw
.with_primary_monitor(|glfw, main_monitor| {
if let Some(monitor) = main_monitor {
let (width, height) = monitor.get_physical_size();
let (sw, sh) = monitor.get_content_scale();
let (w, h) = (width as f32 * sw, height as f32 * sh);
glfw.create_window(
w as u32,
h as u32,
title,
glfw::WindowMode::FullScreen(monitor),
)
} else {
glfw.create_window(
1366,
768,
title,
glfw::WindowMode::Windowed,
)
}
})
.context("unable to create the glfw window")?;
Ok((window, event_receiver))
})
}
#[allow(dead_code)]
pub fn windowed(title: &str, width: u32, height: u32) -> Result<Self> {
GlfwWindow::new(|glfw| {
glfw.create_window(width, height, title, glfw::WindowMode::Windowed)
.context("unable to create glfw window")
})
}
pub fn poll_events(&mut self) -> Vec<(f64, glfw::WindowEvent)> {
self.glfw.poll_events();
glfw::flush_messages(&self.event_receiver)
.into_iter()
.collect()
}
fn build_vulkan_window<F>(
glfw: &mut glfw::Glfw,
create_window: F,
) -> Result<(glfw::Window, EventReceiver)>
where
F: FnOnce(&mut glfw::Glfw) -> Result<(glfw::Window, EventReceiver)>,
{
if !glfw.vulkan_supported() {
bail!("vulkan is not supported on this device!");
}
glfw.window_hint(glfw::WindowHint::ClientApi(
glfw::ClientApiHint::NoApi,
));
create_window(glfw)
}
fn create_surface(
instance: &Instance,
window: &glfw::Window,
) -> Result<vk::SurfaceKHR> {
let mut surface_handle: u64 = 0;
let result = window.create_window_surface(
instance.ash.handle().as_raw() as usize,
null(),
&mut surface_handle,
);
if result != vk::Result::SUCCESS.as_raw() as u32 {
bail!("unable to create the vulkan surface");
}
Ok(vk::SurfaceKHR::from_raw(surface_handle))
}
}
impl Drop for GlfwWindow {
fn drop(&mut self) {
unsafe {
self.surface_loader.destroy_surface(self.surface, None);
}
}
}