mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-25 23:01:30 +11:00
Android: Use platform specific iterators.
This commit is contained in:
parent
4bfcedad3e
commit
8b3750ec3d
|
@ -74,6 +74,52 @@ unsafe impl Send for HeadlessContext {}
|
||||||
#[cfg(feature = "headless")]
|
#[cfg(feature = "headless")]
|
||||||
unsafe impl Sync for HeadlessContext {}
|
unsafe impl Sync for HeadlessContext {}
|
||||||
|
|
||||||
|
pub struct PollEventsIterator<'a> {
|
||||||
|
window: &'a Window,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a> Iterator for PollEventsIterator<'a> {
|
||||||
|
type Item = Event;
|
||||||
|
|
||||||
|
fn next(&mut self) -> Option<Event> {
|
||||||
|
match self.window.event_rx.try_recv() {
|
||||||
|
Ok(event) => {
|
||||||
|
Some(match event {
|
||||||
|
android_glue::Event::EventDown => MouseInput(Pressed, MouseButton::Left),
|
||||||
|
android_glue::Event::EventUp => MouseInput(Released, MouseButton::Left),
|
||||||
|
android_glue::Event::EventMove(x, y) => MouseMoved((x as i32, y as i32)),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
Err(_) => {
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct WaitEventsIterator<'a> {
|
||||||
|
window: &'a Window,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a> Iterator for WaitEventsIterator<'a> {
|
||||||
|
type Item = Event;
|
||||||
|
|
||||||
|
fn next(&mut self) -> Option<Event> {
|
||||||
|
use std::time::Duration;
|
||||||
|
use std::old_io::timer;
|
||||||
|
|
||||||
|
loop {
|
||||||
|
// calling poll_events()
|
||||||
|
if let Some(ev) = self.window.poll_events().next() {
|
||||||
|
return Some(ev);
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: Implement a proper way of sleeping on the event queue
|
||||||
|
timer::sleep(Duration::milliseconds(16));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl Window {
|
impl Window {
|
||||||
pub fn new(builder: BuilderAttribs) -> Result<Window, CreationError> {
|
pub fn new(builder: BuilderAttribs) -> Result<Window, CreationError> {
|
||||||
use std::{mem, ptr};
|
use std::{mem, ptr};
|
||||||
|
@ -242,34 +288,16 @@ impl Window {
|
||||||
WindowProxy
|
WindowProxy
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn poll_events(&self) -> RingBuf<Event> {
|
pub fn poll_events(&self) -> PollEventsIterator {
|
||||||
let mut events = RingBuf::new();
|
PollEventsIterator {
|
||||||
loop {
|
window: self
|
||||||
match self.event_rx.try_recv() {
|
|
||||||
Ok(event) => match event {
|
|
||||||
android_glue::Event::EventDown => {
|
|
||||||
events.push_back(MouseInput(Pressed, MouseButton::Left));
|
|
||||||
},
|
|
||||||
android_glue::Event::EventUp => {
|
|
||||||
events.push_back(MouseInput(Released, MouseButton::Left));
|
|
||||||
},
|
|
||||||
android_glue::Event::EventMove(x, y) => {
|
|
||||||
events.push_back(MouseMoved((x as i32, y as i32)));
|
|
||||||
},
|
|
||||||
},
|
|
||||||
Err(_) => {
|
|
||||||
break;
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
events
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn wait_events(&self) -> RingBuf<Event> {
|
pub fn wait_events(&self) -> WaitEventsIterator {
|
||||||
use std::time::Duration;
|
WaitEventsIterator {
|
||||||
use std::old_io::timer;
|
window: self
|
||||||
timer::sleep(Duration::milliseconds(16));
|
}
|
||||||
self.poll_events()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn make_current(&self) {
|
pub fn make_current(&self) {
|
||||||
|
|
Loading…
Reference in a new issue