aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrey Lesnikov <ozkriff@gmail.com>2014-11-17 13:32:28 +0400
committerAndrey Lesnikov <ozkriff@gmail.com>2014-11-17 13:32:28 +0400
commitc0305c47817e56fe39b4dc39d6f5af7434130881 (patch)
treedd5fa639f12733287adc803e2eec2bcab6656e66 /src
parente7b25878fc0f73526ccfd7ef4286e25ac6fda776 (diff)
downloadglutin-c0305c47817e56fe39b4dc39d6f5af7434130881.tar.gz
glutin-c0305c47817e56fe39b4dc39d6f5af7434130881.zip
Android: Implemented basic inputs
Diffstat (limited to 'src')
-rw-r--r--src/android/mod.rs27
1 files changed, 26 insertions, 1 deletions
diff --git a/src/android/mod.rs b/src/android/mod.rs
index 4b1c7eb..2e0ab74 100644
--- a/src/android/mod.rs
+++ b/src/android/mod.rs
@@ -3,11 +3,13 @@ extern crate native;
use libc;
use {CreationError, OsError, Event, WindowBuilder};
+use {Pressed, Released, LeftMouseButton, MouseInput, MouseMoved};
pub struct Window {
display: ffi::egl::types::EGLDisplay,
context: ffi::egl::types::EGLContext,
surface: ffi::egl::types::EGLSurface,
+ event_rx: Receiver<android_glue::Event>,
}
pub struct MonitorID;
@@ -111,10 +113,14 @@ impl Window {
android_glue::write_log("eglCreateWindowSurface succeeded");
+ let (tx, rx) = channel();
+ android_glue::add_sender(tx);
+
Ok(Window {
display: display,
context: context,
surface: surface,
+ event_rx: rx,
})
}
@@ -169,7 +175,26 @@ impl Window {
use std::time::Duration;
use std::io::timer;
timer::sleep(Duration::milliseconds(16));
- Vec::new()
+ let mut events = Vec::new();
+ loop {
+ match self.event_rx.try_recv() {
+ Ok(event) => match event {
+ android_glue::EventDown => {
+ events.push(MouseInput(Pressed, LeftMouseButton));
+ },
+ android_glue::EventUp => {
+ events.push(MouseInput(Released, LeftMouseButton));
+ },
+ android_glue::EventMove(x, y) => {
+ events.push(MouseMoved((x as int, y as int)));
+ },
+ },
+ Err(_) => {
+ break;
+ },
+ }
+ }
+ events
}
pub fn make_current(&self) {