2018-05-08 07:36:21 +10:00
|
|
|
use std::{self, mem, ptr};
|
Windows: Implement DeviceEvents (#482)
Fixes #467
All variants other than Text have been implemented. While Text can
be implemented using ToUnicode, that doesn't play nice with dead
keys, IME, etc.
Most of the mouse DeviceEvents were already implemented, but due
to the flags that were used when registering for raw input events,
they only worked when the window was in the foreground.
This is also a step forward for #338, as DeviceIds are no longer
useless on Windows. On DeviceEvents, the DeviceId contains that
device's handle. While that handle could ostensibly be used by
developers to query device information, my actual reason for
choosing it is because it's simply a very easy way to handle this.
As a fun bonus, this enabled me to create this method:
DevideIdExt::get_persistent_identifier() -> Option<String>
Using this gives you a unique identifier for the device that
persists across replugs/reboots/etc., so it's ideal for something
like device-specific configuration.
There's a notable caveat to the new DeviceIds, which is that the
value will always be 0 for a WindowEvent. There doesn't seem to be
any straightforward way around this limitation.
I was concerned that multi-window applications would receive n
copies of every DeviceEvent, but Windows only sends them to one
window per application.
Lastly, there's a chance that these additions will cause
antivirus/etc. software to detect winit applications as keyloggers.
I don't know how likely that is to actually happen to people, but
if it does become an issue, the raw input code is neatly
sequestered and would be easy to make optional during compilation.
2018-04-29 02:42:33 +10:00
|
|
|
use std::ops::BitAnd;
|
|
|
|
|
|
|
|
use winapi::ctypes::wchar_t;
|
2018-05-08 07:36:21 +10:00
|
|
|
use winapi::shared::minwindef::DWORD;
|
|
|
|
use winapi::um::errhandlingapi::GetLastError;
|
|
|
|
use winapi::um::winbase::{
|
|
|
|
FormatMessageW,
|
|
|
|
FORMAT_MESSAGE_ALLOCATE_BUFFER,
|
|
|
|
FORMAT_MESSAGE_FROM_SYSTEM,
|
|
|
|
FORMAT_MESSAGE_IGNORE_INSERTS,
|
|
|
|
lstrlenW,
|
|
|
|
LocalFree,
|
|
|
|
};
|
|
|
|
use winapi::um::winnt::{
|
|
|
|
LPCWSTR,
|
|
|
|
MAKELANGID,
|
|
|
|
LANG_NEUTRAL,
|
|
|
|
SUBLANG_DEFAULT,
|
|
|
|
};
|
Windows: Implement DeviceEvents (#482)
Fixes #467
All variants other than Text have been implemented. While Text can
be implemented using ToUnicode, that doesn't play nice with dead
keys, IME, etc.
Most of the mouse DeviceEvents were already implemented, but due
to the flags that were used when registering for raw input events,
they only worked when the window was in the foreground.
This is also a step forward for #338, as DeviceIds are no longer
useless on Windows. On DeviceEvents, the DeviceId contains that
device's handle. While that handle could ostensibly be used by
developers to query device information, my actual reason for
choosing it is because it's simply a very easy way to handle this.
As a fun bonus, this enabled me to create this method:
DevideIdExt::get_persistent_identifier() -> Option<String>
Using this gives you a unique identifier for the device that
persists across replugs/reboots/etc., so it's ideal for something
like device-specific configuration.
There's a notable caveat to the new DeviceIds, which is that the
value will always be 0 for a WindowEvent. There doesn't seem to be
any straightforward way around this limitation.
I was concerned that multi-window applications would receive n
copies of every DeviceEvent, but Windows only sends them to one
window per application.
Lastly, there's a chance that these additions will cause
antivirus/etc. software to detect winit applications as keyloggers.
I don't know how likely that is to actually happen to people, but
if it does become an issue, the raw input code is neatly
sequestered and would be easy to make optional during compilation.
2018-04-29 02:42:33 +10:00
|
|
|
|
|
|
|
pub fn has_flag<T>(bitset: T, flag: T) -> bool
|
|
|
|
where T:
|
|
|
|
Copy + PartialEq + BitAnd<T, Output = T>
|
|
|
|
{
|
|
|
|
bitset & flag == flag
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn wchar_to_string(wchar: &[wchar_t]) -> String {
|
|
|
|
String::from_utf16_lossy(wchar)
|
|
|
|
.trim_right_matches(0 as char)
|
|
|
|
.to_string()
|
|
|
|
}
|
2018-05-08 07:36:21 +10:00
|
|
|
|
|
|
|
#[derive(Debug, Default, Clone, PartialEq, Eq)]
|
|
|
|
pub struct WinError(Option<String>);
|
|
|
|
|
|
|
|
impl WinError {
|
|
|
|
pub fn from_last_error() -> Self {
|
|
|
|
WinError(unsafe { get_last_error() })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub unsafe fn get_last_error() -> Option<String> {
|
|
|
|
let err = GetLastError();
|
|
|
|
if err != 0 {
|
|
|
|
let buf_addr: LPCWSTR = {
|
|
|
|
let mut buf_addr: LPCWSTR = mem::uninitialized();
|
|
|
|
FormatMessageW(
|
|
|
|
FORMAT_MESSAGE_ALLOCATE_BUFFER
|
|
|
|
| FORMAT_MESSAGE_FROM_SYSTEM
|
|
|
|
| FORMAT_MESSAGE_IGNORE_INSERTS,
|
|
|
|
ptr::null(),
|
|
|
|
err,
|
|
|
|
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT) as DWORD,
|
|
|
|
// This is a pointer to a pointer
|
|
|
|
&mut buf_addr as *mut LPCWSTR as *mut _,
|
|
|
|
0,
|
|
|
|
ptr::null_mut(),
|
|
|
|
);
|
|
|
|
buf_addr
|
|
|
|
};
|
|
|
|
if !buf_addr.is_null() {
|
|
|
|
let buf_len = lstrlenW(buf_addr) as usize;
|
|
|
|
let buf_slice = std::slice::from_raw_parts(buf_addr, buf_len);
|
|
|
|
let string = wchar_to_string(buf_slice);
|
|
|
|
LocalFree(buf_addr as *mut _);
|
|
|
|
return Some(string);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|