2014-10-22 08:04:13 +02:00
|
|
|
use std::sync::atomic::AtomicBool;
|
2015-04-02 22:04:17 +02:00
|
|
|
use std::sync::{Arc, Mutex};
|
|
|
|
|
use std::io;
|
2014-07-31 20:14:36 +02:00
|
|
|
use std::ptr;
|
2015-02-16 11:46:18 +01:00
|
|
|
use std::mem;
|
2015-03-01 13:18:36 +01:00
|
|
|
use std::thread;
|
2015-03-01 13:41:00 +01:00
|
|
|
|
2015-02-16 10:08:08 +01:00
|
|
|
use super::callback;
|
2014-08-02 10:42:17 +02:00
|
|
|
use super::Window;
|
2015-02-16 11:46:18 +01:00
|
|
|
use super::MonitorID;
|
2015-03-01 13:41:00 +01:00
|
|
|
use super::WindowWrapper;
|
2015-02-18 16:49:53 +01:00
|
|
|
|
2015-01-14 10:04:28 +01:00
|
|
|
use BuilderAttribs;
|
2015-02-16 10:08:08 +01:00
|
|
|
use CreationError;
|
2014-11-19 06:09:54 +01:00
|
|
|
use CreationError::OsError;
|
2015-03-26 17:32:40 +01:00
|
|
|
use CursorState;
|
2014-07-31 20:14:36 +02:00
|
|
|
|
2015-05-20 22:38:06 +02:00
|
|
|
use std::ffi::OsStr;
|
2015-04-03 08:33:51 +02:00
|
|
|
use std::os::windows::ffi::OsStrExt;
|
2015-02-16 10:08:08 +01:00
|
|
|
use std::sync::mpsc::channel;
|
2014-11-27 15:52:07 +01:00
|
|
|
|
2014-12-01 18:24:15 +01:00
|
|
|
use winapi;
|
2015-01-25 21:52:17 -05:00
|
|
|
use kernel32;
|
|
|
|
|
use user32;
|
2015-05-20 22:38:06 +02:00
|
|
|
|
|
|
|
|
use api::wgl::{self, Context};
|
2014-12-01 18:24:15 +01:00
|
|
|
|
2014-12-29 22:56:15 +01:00
|
|
|
/// Work-around the fact that HGLRC doesn't implement Send
|
2015-05-20 22:38:06 +02:00
|
|
|
struct ContextHack(winapi::HGLRC);
|
2014-12-29 22:56:15 +01:00
|
|
|
unsafe impl Send for ContextHack {}
|
|
|
|
|
|
2015-05-20 22:38:06 +02:00
|
|
|
pub fn new_window(builder: BuilderAttribs<'static>, builder_sharelists: Option<winapi::HGLRC>)
|
2014-11-24 19:35:31 +01:00
|
|
|
-> Result<Window, CreationError>
|
2014-10-04 19:17:02 +02:00
|
|
|
{
|
2015-05-20 22:38:06 +02:00
|
|
|
let builder_sharelists = builder_sharelists.map(|s| ContextHack(s));
|
|
|
|
|
|
2014-08-01 23:02:26 +02:00
|
|
|
// initializing variables to be sent to the task
|
2015-04-03 08:33:51 +02:00
|
|
|
|
2015-04-03 18:36:57 +02:00
|
|
|
let title = OsStr::new(&builder.title).encode_wide().chain(Some(0).into_iter())
|
|
|
|
|
.collect::<Vec<_>>();
|
2015-03-01 14:07:50 +01:00
|
|
|
|
2014-07-31 20:55:30 +02:00
|
|
|
let (tx, rx) = channel();
|
|
|
|
|
|
2015-03-01 14:07:50 +01:00
|
|
|
// `GetMessage` must be called in the same thread as CreateWindow, so we create a new thread
|
|
|
|
|
// dedicated to this window.
|
2015-03-01 13:18:36 +01:00
|
|
|
thread::spawn(move || {
|
2015-03-01 13:14:58 +01:00
|
|
|
unsafe {
|
2015-03-01 14:07:50 +01:00
|
|
|
// creating and sending the `Window`
|
2015-03-01 13:14:58 +01:00
|
|
|
match init(title, builder, builder_sharelists) {
|
|
|
|
|
Ok(w) => tx.send(Ok(w)).ok(),
|
|
|
|
|
Err(e) => {
|
|
|
|
|
tx.send(Err(e)).ok();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// now that the `Window` struct is initialized, the main `Window::new()` function will
|
|
|
|
|
// return and this events loop will run in parallel
|
|
|
|
|
loop {
|
|
|
|
|
let mut msg = mem::uninitialized();
|
|
|
|
|
|
|
|
|
|
if user32::GetMessageW(&mut msg, ptr::null_mut(), 0, 0) == 0 {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
user32::TranslateMessage(&msg);
|
2015-03-01 14:07:50 +01:00
|
|
|
user32::DispatchMessageW(&msg); // calls `callback` (see the callback module)
|
2014-07-31 20:55:30 +02:00
|
|
|
}
|
2015-02-16 11:46:18 +01:00
|
|
|
}
|
|
|
|
|
});
|
2014-08-22 11:19:19 +02:00
|
|
|
|
2015-02-16 11:46:18 +01:00
|
|
|
rx.recv().unwrap()
|
|
|
|
|
}
|
2014-10-04 19:17:02 +02:00
|
|
|
|
2015-03-01 13:14:58 +01:00
|
|
|
unsafe fn init(title: Vec<u16>, builder: BuilderAttribs<'static>,
|
|
|
|
|
builder_sharelists: Option<ContextHack>) -> Result<Window, CreationError>
|
2015-02-16 11:46:18 +01:00
|
|
|
{
|
|
|
|
|
let builder_sharelists = builder_sharelists.map(|s| s.0);
|
|
|
|
|
|
|
|
|
|
// registering the window class
|
|
|
|
|
let class_name = register_window_class();
|
|
|
|
|
|
|
|
|
|
// building a RECT object with coordinates
|
|
|
|
|
let mut rect = winapi::RECT {
|
|
|
|
|
left: 0, right: builder.dimensions.unwrap_or((1024, 768)).0 as winapi::LONG,
|
|
|
|
|
top: 0, bottom: builder.dimensions.unwrap_or((1024, 768)).1 as winapi::LONG,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// switching to fullscreen if necessary
|
|
|
|
|
// this means adjusting the window's position so that it overlaps the right monitor,
|
|
|
|
|
// and change the monitor's resolution if necessary
|
|
|
|
|
if builder.monitor.is_some() {
|
|
|
|
|
let monitor = builder.monitor.as_ref().unwrap();
|
2015-03-01 13:14:58 +01:00
|
|
|
try!(switch_to_fullscreen(&mut rect, monitor));
|
2015-02-16 11:46:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// computing the style and extended style of the window
|
|
|
|
|
let (ex_style, style) = if builder.monitor.is_some() {
|
|
|
|
|
(winapi::WS_EX_APPWINDOW, winapi::WS_POPUP | winapi::WS_CLIPSIBLINGS | winapi::WS_CLIPCHILDREN)
|
|
|
|
|
} else {
|
|
|
|
|
(winapi::WS_EX_APPWINDOW | winapi::WS_EX_WINDOWEDGE,
|
|
|
|
|
winapi::WS_OVERLAPPEDWINDOW | winapi::WS_CLIPSIBLINGS | winapi::WS_CLIPCHILDREN)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// adjusting the window coordinates using the style
|
2015-03-01 13:14:58 +01:00
|
|
|
user32::AdjustWindowRectEx(&mut rect, style, 0, ex_style);
|
2015-02-16 11:46:18 +01:00
|
|
|
|
2015-03-01 14:07:50 +01:00
|
|
|
// creating the real window this time, by using the functions in `extra_functions`
|
2015-03-01 13:14:58 +01:00
|
|
|
let real_window = {
|
2015-02-16 11:46:18 +01:00
|
|
|
let (width, height) = if builder.monitor.is_some() || builder.dimensions.is_some() {
|
|
|
|
|
(Some(rect.right - rect.left), Some(rect.bottom - rect.top))
|
|
|
|
|
} else {
|
|
|
|
|
(None, None)
|
|
|
|
|
};
|
2014-08-02 00:01:45 +02:00
|
|
|
|
2015-03-24 13:24:07 -07:00
|
|
|
let (x, y) = if builder.monitor.is_some() {
|
|
|
|
|
(Some(rect.left), Some(rect.top))
|
|
|
|
|
} else {
|
|
|
|
|
(None, None)
|
|
|
|
|
};
|
|
|
|
|
|
2015-02-16 11:46:18 +01:00
|
|
|
let style = if !builder.visible || builder.headless {
|
|
|
|
|
style
|
|
|
|
|
} else {
|
|
|
|
|
style | winapi::WS_VISIBLE
|
2014-07-31 20:55:30 +02:00
|
|
|
};
|
|
|
|
|
|
2015-02-16 11:46:18 +01:00
|
|
|
let handle = user32::CreateWindowExW(ex_style, class_name.as_ptr(),
|
|
|
|
|
title.as_ptr() as winapi::LPCWSTR,
|
|
|
|
|
style | winapi::WS_CLIPSIBLINGS | winapi::WS_CLIPCHILDREN,
|
2015-03-24 13:24:07 -07:00
|
|
|
x.unwrap_or(winapi::CW_USEDEFAULT), y.unwrap_or(winapi::CW_USEDEFAULT),
|
2015-02-16 11:46:18 +01:00
|
|
|
width.unwrap_or(winapi::CW_USEDEFAULT), height.unwrap_or(winapi::CW_USEDEFAULT),
|
|
|
|
|
ptr::null_mut(), ptr::null_mut(), kernel32::GetModuleHandleW(ptr::null()),
|
|
|
|
|
ptr::null_mut());
|
|
|
|
|
|
|
|
|
|
if handle.is_null() {
|
|
|
|
|
return Err(OsError(format!("CreateWindowEx function failed: {}",
|
2015-04-02 22:04:17 +02:00
|
|
|
format!("{}", io::Error::last_os_error()))));
|
2014-08-02 00:01:45 +02:00
|
|
|
}
|
|
|
|
|
|
2015-03-01 13:41:00 +01:00
|
|
|
let hdc = user32::GetDC(handle);
|
2015-02-16 11:46:18 +01:00
|
|
|
if hdc.is_null() {
|
2015-03-01 13:41:00 +01:00
|
|
|
return Err(OsError(format!("GetDC function failed: {}",
|
2015-04-02 22:04:17 +02:00
|
|
|
format!("{}", io::Error::last_os_error()))));
|
2015-02-16 11:46:18 +01:00
|
|
|
}
|
2015-03-01 13:41:00 +01:00
|
|
|
|
|
|
|
|
WindowWrapper(handle, hdc)
|
2015-02-16 11:46:18 +01:00
|
|
|
};
|
|
|
|
|
|
2015-05-20 22:38:06 +02:00
|
|
|
//
|
|
|
|
|
let context = try!(wgl::Context::new(&builder, real_window.0, builder_sharelists));
|
2015-02-16 11:46:18 +01:00
|
|
|
|
|
|
|
|
// calling SetForegroundWindow if fullscreen
|
|
|
|
|
if builder.monitor.is_some() {
|
2015-03-01 13:41:00 +01:00
|
|
|
user32::SetForegroundWindow(real_window.0);
|
2015-02-16 11:46:18 +01:00
|
|
|
}
|
|
|
|
|
|
2015-04-01 10:04:43 -07:00
|
|
|
// Creating a mutex to track the current cursor state
|
|
|
|
|
let cursor_state = Arc::new(Mutex::new(CursorState::Normal));
|
|
|
|
|
|
|
|
|
|
// filling the CONTEXT_STASH task-local storage so that we can start receiving events
|
2015-02-16 11:46:18 +01:00
|
|
|
let events_receiver = {
|
|
|
|
|
let (tx, rx) = channel();
|
|
|
|
|
let mut tx = Some(tx);
|
2015-04-01 10:04:43 -07:00
|
|
|
callback::CONTEXT_STASH.with(|context_stash| {
|
|
|
|
|
let data = callback::ThreadLocalData {
|
|
|
|
|
win: real_window.0,
|
|
|
|
|
sender: tx.take().unwrap(),
|
|
|
|
|
cursor_state: cursor_state.clone()
|
|
|
|
|
};
|
|
|
|
|
(*context_stash.borrow_mut()) = Some(data);
|
2015-02-16 11:46:18 +01:00
|
|
|
});
|
|
|
|
|
rx
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// building the struct
|
|
|
|
|
Ok(Window {
|
|
|
|
|
window: real_window,
|
2015-02-16 15:42:00 +01:00
|
|
|
context: context,
|
2015-02-16 11:46:18 +01:00
|
|
|
events_receiver: events_receiver,
|
|
|
|
|
is_closed: AtomicBool::new(false),
|
2015-04-01 10:04:43 -07:00
|
|
|
cursor_state: cursor_state,
|
2015-02-16 11:46:18 +01:00
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-01 13:14:58 +01:00
|
|
|
unsafe fn register_window_class() -> Vec<u16> {
|
2015-04-03 18:36:57 +02:00
|
|
|
let class_name = OsStr::new("Window Class").encode_wide().chain(Some(0).into_iter())
|
|
|
|
|
.collect::<Vec<_>>();
|
2015-02-16 11:46:18 +01:00
|
|
|
|
|
|
|
|
let class = winapi::WNDCLASSEXW {
|
|
|
|
|
cbSize: mem::size_of::<winapi::WNDCLASSEXW>() as winapi::UINT,
|
|
|
|
|
style: winapi::CS_HREDRAW | winapi::CS_VREDRAW | winapi::CS_OWNDC,
|
2015-02-23 14:46:47 +01:00
|
|
|
lpfnWndProc: Some(callback::callback),
|
2015-02-16 11:46:18 +01:00
|
|
|
cbClsExtra: 0,
|
|
|
|
|
cbWndExtra: 0,
|
2015-03-01 13:14:58 +01:00
|
|
|
hInstance: kernel32::GetModuleHandleW(ptr::null()),
|
2015-02-16 11:46:18 +01:00
|
|
|
hIcon: ptr::null_mut(),
|
2015-03-26 17:32:40 +01:00
|
|
|
hCursor: ptr::null_mut(), // must be null in order for cursor state to work properly
|
2015-02-16 11:46:18 +01:00
|
|
|
hbrBackground: ptr::null_mut(),
|
|
|
|
|
lpszMenuName: ptr::null(),
|
|
|
|
|
lpszClassName: class_name.as_ptr(),
|
|
|
|
|
hIconSm: ptr::null_mut(),
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// We ignore errors because registering the same window class twice would trigger
|
|
|
|
|
// an error, and because errors here are detected during CreateWindowEx anyway.
|
|
|
|
|
// Also since there is no weird element in the struct, there is no reason for this
|
|
|
|
|
// call to fail.
|
2015-03-01 13:14:58 +01:00
|
|
|
user32::RegisterClassExW(&class);
|
2015-02-16 11:46:18 +01:00
|
|
|
|
|
|
|
|
class_name
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-01 13:14:58 +01:00
|
|
|
unsafe fn switch_to_fullscreen(rect: &mut winapi::RECT, monitor: &MonitorID)
|
|
|
|
|
-> Result<(), CreationError>
|
|
|
|
|
{
|
2015-02-16 11:46:18 +01:00
|
|
|
// adjusting the rect
|
|
|
|
|
{
|
|
|
|
|
let pos = monitor.get_position();
|
|
|
|
|
rect.left += pos.0 as winapi::LONG;
|
|
|
|
|
rect.right += pos.0 as winapi::LONG;
|
|
|
|
|
rect.top += pos.1 as winapi::LONG;
|
|
|
|
|
rect.bottom += pos.1 as winapi::LONG;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// changing device settings
|
2015-03-01 13:14:58 +01:00
|
|
|
let mut screen_settings: winapi::DEVMODEW = mem::zeroed();
|
2015-02-16 11:46:18 +01:00
|
|
|
screen_settings.dmSize = mem::size_of::<winapi::DEVMODEW>() as winapi::WORD;
|
|
|
|
|
screen_settings.dmPelsWidth = (rect.right - rect.left) as winapi::DWORD;
|
|
|
|
|
screen_settings.dmPelsHeight = (rect.bottom - rect.top) as winapi::DWORD;
|
|
|
|
|
screen_settings.dmBitsPerPel = 32; // TODO: ?
|
|
|
|
|
screen_settings.dmFields = winapi::DM_BITSPERPEL | winapi::DM_PELSWIDTH | winapi::DM_PELSHEIGHT;
|
|
|
|
|
|
2015-03-24 13:29:17 -07:00
|
|
|
let result = user32::ChangeDisplaySettingsExW(monitor.get_adapter_name().as_ptr(),
|
2015-03-01 13:14:58 +01:00
|
|
|
&mut screen_settings, ptr::null_mut(),
|
|
|
|
|
winapi::CDS_FULLSCREEN, ptr::null_mut());
|
2015-02-16 11:46:18 +01:00
|
|
|
|
|
|
|
|
if result != winapi::DISP_CHANGE_SUCCESSFUL {
|
|
|
|
|
return Err(OsError(format!("ChangeDisplaySettings failed: {}", result)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Ok(())
|
2014-07-31 20:14:36 +02:00
|
|
|
}
|