mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2025-01-12 05:31:31 +11:00
Win32: use platform-specific iterators instead
This commit is contained in:
parent
9884908240
commit
49e3fbdd71
34
src/lib.rs
34
src/lib.rs
|
@ -565,7 +565,7 @@ impl Window {
|
|||
/// Contrary to `wait_events`, this function never blocks.
|
||||
#[inline]
|
||||
pub fn poll_events(&self) -> PollEventsIterator {
|
||||
PollEventsIterator { window: self, data: self.window.poll_events().into_iter() }
|
||||
PollEventsIterator(self.window.poll_events())
|
||||
}
|
||||
|
||||
/// Returns an iterator that returns events one by one, blocking if necessary until one is
|
||||
|
@ -574,7 +574,7 @@ impl Window {
|
|||
/// The iterator never returns `None`.
|
||||
#[inline]
|
||||
pub fn wait_events(&self) -> WaitEventsIterator {
|
||||
WaitEventsIterator { window: self, data: self.window.wait_events().into_iter() }
|
||||
WaitEventsIterator(self.window.wait_events())
|
||||
}
|
||||
|
||||
/// Sets the context as the current context.
|
||||
|
@ -727,24 +727,13 @@ impl gl_common::GlFunctionsSource for HeadlessContext {
|
|||
// Implementation note: we retreive the list once, then serve each element by one by one.
|
||||
// This may change in the future.
|
||||
#[cfg(feature = "window")]
|
||||
pub struct PollEventsIterator<'a> {
|
||||
window: &'a Window,
|
||||
data: RingBufIter<Event>,
|
||||
}
|
||||
pub struct PollEventsIterator<'a>(winimpl::PollEventsIterator<'a>);
|
||||
|
||||
#[cfg(feature = "window")]
|
||||
impl<'a> Iterator for PollEventsIterator<'a> {
|
||||
type Item = Event;
|
||||
fn next(&mut self) -> Option<Event> {
|
||||
if let Some(ev) = self.data.next() {
|
||||
return Some(ev);
|
||||
}
|
||||
|
||||
let PollEventsIterator { window, data } = self.window.poll_events();
|
||||
self.window = window;
|
||||
self.data = data;
|
||||
|
||||
self.data.next()
|
||||
self.0.next()
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -752,24 +741,13 @@ impl<'a> Iterator for PollEventsIterator<'a> {
|
|||
// Implementation note: we retreive the list once, then serve each element by one by one.
|
||||
// This may change in the future.
|
||||
#[cfg(feature = "window")]
|
||||
pub struct WaitEventsIterator<'a> {
|
||||
window: &'a Window,
|
||||
data: RingBufIter<Event>,
|
||||
}
|
||||
pub struct WaitEventsIterator<'a>(winimpl::WaitEventsIterator<'a>);
|
||||
|
||||
#[cfg(feature = "window")]
|
||||
impl<'a> Iterator for WaitEventsIterator<'a> {
|
||||
type Item = Event;
|
||||
fn next(&mut self) -> Option<Event> {
|
||||
if let Some(ev) = self.data.next() {
|
||||
return Some(ev);
|
||||
}
|
||||
|
||||
let WaitEventsIterator { window, data } = self.window.wait_events();
|
||||
self.window = window;
|
||||
self.data = data;
|
||||
|
||||
self.next()
|
||||
self.0.next()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -205,50 +205,16 @@ impl Window {
|
|||
}
|
||||
|
||||
/// See the docs in the crate root file.
|
||||
// TODO: return iterator
|
||||
pub fn poll_events(&self) -> RingBuf<Event> {
|
||||
let mut events = RingBuf::new();
|
||||
loop {
|
||||
match self.events_receiver.try_recv() {
|
||||
Ok(ev) => events.push_back(ev),
|
||||
Err(_) => break
|
||||
}
|
||||
pub fn poll_events(&self) -> PollEventsIterator {
|
||||
PollEventsIterator {
|
||||
window: self,
|
||||
}
|
||||
|
||||
// if one of the received events is `Closed`, setting `is_closed` to true
|
||||
if events.iter().any(|e| match e { &::events::Event::Closed => true, _ => false }) {
|
||||
use std::sync::atomic::Ordering::Relaxed;
|
||||
self.is_closed.store(true, Relaxed);
|
||||
}
|
||||
|
||||
events
|
||||
}
|
||||
|
||||
/// See the docs in the crate root file.
|
||||
// TODO: return iterator
|
||||
pub fn wait_events(&self) -> RingBuf<Event> {
|
||||
match self.events_receiver.recv() {
|
||||
Ok(ev) => {
|
||||
// if the received event is `Closed`, setting `is_closed` to true
|
||||
match ev {
|
||||
::events::Event::Closed => {
|
||||
use std::sync::atomic::Ordering::Relaxed;
|
||||
self.is_closed.store(true, Relaxed);
|
||||
},
|
||||
_ => ()
|
||||
};
|
||||
|
||||
// looing for other possible events in the queue
|
||||
let mut result = self.poll_events();
|
||||
result.insert(0, ev);
|
||||
result
|
||||
},
|
||||
|
||||
Err(_) => {
|
||||
use std::sync::atomic::Ordering::Relaxed;
|
||||
self.is_closed.store(true, Relaxed);
|
||||
RingBuf::new()
|
||||
}
|
||||
pub fn wait_events(&self) -> WaitEventsIterator {
|
||||
WaitEventsIterator {
|
||||
window: self,
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -298,6 +264,50 @@ impl Window {
|
|||
}
|
||||
}
|
||||
|
||||
pub struct PollEventsIterator<'a> {
|
||||
window: &'a Window,
|
||||
}
|
||||
|
||||
impl<'a> Iterator for PollEventsIterator<'a> {
|
||||
type Item = Event;
|
||||
|
||||
fn next(&mut self) -> Option<Event> {
|
||||
use events::Event::Closed;
|
||||
|
||||
match self.window.events_receiver.recv() {
|
||||
Ok(Closed) => {
|
||||
use std::sync::atomic::Ordering::Relaxed;
|
||||
self.window.is_closed.store(true, Relaxed);
|
||||
Some(Closed)
|
||||
},
|
||||
Ok(ev) => Some(ev),
|
||||
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 events::Event::Closed;
|
||||
|
||||
match self.window.events_receiver.recv() {
|
||||
Ok(Closed) => {
|
||||
use std::sync::atomic::Ordering::Relaxed;
|
||||
self.window.is_closed.store(true, Relaxed);
|
||||
Some(Closed)
|
||||
},
|
||||
Ok(ev) => Some(ev),
|
||||
Err(_) => None
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[unsafe_destructor]
|
||||
impl Drop for Window {
|
||||
fn drop(&mut self) {
|
||||
|
|
Loading…
Reference in a new issue