winit/src/api/android/mod.rs

257 lines
5.8 KiB
Rust
Raw Normal View History

2015-04-24 09:51:23 +02:00
#![cfg(target_os = "android")]
2014-09-11 18:13:50 +02:00
extern crate android_glue;
use libc;
use std::ffi::{CString};
use std::sync::mpsc::{Receiver, channel};
2016-04-19 19:31:36 +02:00
use std::os::raw::c_void;
use {CreationError, Event, MouseCursor};
2014-11-19 06:09:54 +01:00
use CreationError::OsError;
use events::ElementState::{Pressed, Released};
use events::{Touch, TouchPhase};
2014-09-11 18:13:50 +02:00
use std::collections::VecDeque;
use CursorState;
2015-09-21 13:15:43 +02:00
use WindowAttributes;
use native_monitor::NativeMonitorId;
2014-09-11 18:13:50 +02:00
pub struct Window {
2016-04-19 19:31:36 +02:00
native_window: *const c_void,
2014-11-17 13:32:28 +04:00
event_rx: Receiver<android_glue::Event>,
2014-09-11 18:13:50 +02:00
}
2015-07-19 13:53:40 +02:00
#[derive(Clone)]
2015-09-24 09:11:59 +02:00
pub struct MonitorId;
2014-09-11 18:13:50 +02:00
mod ffi;
2015-09-21 14:42:05 +02:00
#[inline]
2015-09-24 09:11:59 +02:00
pub fn get_available_monitors() -> VecDeque<MonitorId> {
let mut rb = VecDeque::new();
2015-09-24 09:11:59 +02:00
rb.push_back(MonitorId);
rb
2014-09-11 18:13:50 +02:00
}
2015-09-21 14:42:05 +02:00
#[inline]
2015-09-24 09:11:59 +02:00
pub fn get_primary_monitor() -> MonitorId {
MonitorId
2014-09-11 18:13:50 +02:00
}
2015-09-24 09:11:59 +02:00
impl MonitorId {
2015-09-21 14:42:05 +02:00
#[inline]
2014-09-11 18:13:50 +02:00
pub fn get_name(&self) -> Option<String> {
Some("Primary".to_string())
}
2015-09-21 14:42:05 +02:00
#[inline]
pub fn get_native_identifier(&self) -> NativeMonitorId {
NativeMonitorId::Unavailable
}
2015-09-21 14:42:05 +02:00
#[inline]
pub fn get_dimensions(&self) -> (u32, u32) {
2014-09-11 18:13:50 +02:00
unimplemented!()
}
}
#[derive(Clone, Default)]
2016-01-07 16:01:18 +01:00
pub struct PlatformSpecificWindowBuilderAttributes;
#[derive(Clone, Default)]
2016-01-07 16:01:18 +01:00
pub struct PlatformSpecificHeadlessBuilderAttributes;
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(android_glue::Event::EventMotion(motion)) => {
Some(Event::Touch(Touch {
phase: match motion.action {
android_glue::MotionAction::Down => TouchPhase::Started,
android_glue::MotionAction::Move => TouchPhase::Moved,
android_glue::MotionAction::Up => TouchPhase::Ended,
android_glue::MotionAction::Cancel => TouchPhase::Cancelled,
},
location: (motion.x as f64, motion.y as f64),
id: motion.pointer_id as u64,
}))
}
_ => {
None
}
}
}
}
pub struct WaitEventsIterator<'a> {
window: &'a Window,
}
impl<'a> Iterator for WaitEventsIterator<'a> {
type Item = Event;
2015-09-21 14:42:05 +02:00
#[inline]
fn next(&mut self) -> Option<Event> {
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));
}
}
}
2014-09-11 18:13:50 +02:00
impl Window {
2016-04-19 19:31:36 +02:00
pub fn new(win_attribs: &WindowAttributes, _: &PlatformSpecificWindowBuilderAttributes)
2016-01-07 16:01:18 +01:00
-> Result<Window, CreationError>
2015-09-21 13:15:43 +02:00
{
2014-09-11 18:13:50 +02:00
use std::{mem, ptr};
// not implemented
assert!(win_attribs.min_dimensions.is_none());
assert!(win_attribs.max_dimensions.is_none());
2014-09-11 18:13:50 +02:00
let native_window = unsafe { android_glue::get_native_window() };
if native_window.is_null() {
return Err(OsError(format!("Android's native window is null")));
2014-09-11 18:13:50 +02:00
}
2014-11-17 13:32:28 +04:00
let (tx, rx) = channel();
android_glue::add_sender(tx);
android_glue::set_multitouch(win_attribs.multitouch);
2014-11-17 13:32:28 +04:00
2014-09-11 18:13:50 +02:00
Ok(Window {
native_window: native_window as *const _,
2014-11-17 13:32:28 +04:00
event_rx: rx,
2014-09-11 18:13:50 +02:00
})
}
2016-04-19 19:31:36 +02:00
#[inline]
pub fn get_native_window(&self) -> *const c_void {
self.native_window
}
2015-09-21 14:42:05 +02:00
#[inline]
2014-09-11 18:13:50 +02:00
pub fn is_closed(&self) -> bool {
false
}
2015-09-21 14:42:05 +02:00
#[inline]
2014-09-11 18:13:50 +02:00
pub fn set_title(&self, _: &str) {
}
2015-09-21 14:42:05 +02:00
#[inline]
pub fn show(&self) {
}
2015-09-21 14:42:05 +02:00
#[inline]
pub fn hide(&self) {
}
2015-09-21 14:42:05 +02:00
#[inline]
pub fn get_position(&self) -> Option<(i32, i32)> {
2014-09-11 18:13:50 +02:00
None
}
2015-09-21 14:42:05 +02:00
#[inline]
pub fn set_position(&self, _x: i32, _y: i32) {
2014-09-11 18:13:50 +02:00
}
2015-09-21 14:42:05 +02:00
#[inline]
pub fn get_inner_size(&self) -> Option<(u32, u32)> {
2014-09-11 18:13:50 +02:00
let native_window = unsafe { android_glue::get_native_window() };
if native_window.is_null() {
None
} else {
Some((
2016-04-19 19:31:36 +02:00
unsafe { ffi::ANativeWindow_getWidth(native_window as *const _) } as u32,
unsafe { ffi::ANativeWindow_getHeight(native_window as *const _) } as u32
2014-09-11 18:13:50 +02:00
))
}
}
2015-09-21 14:42:05 +02:00
#[inline]
pub fn get_outer_size(&self) -> Option<(u32, u32)> {
2014-09-11 18:13:50 +02:00
self.get_inner_size()
}
2015-09-21 14:42:05 +02:00
#[inline]
pub fn set_inner_size(&self, _x: u32, _y: u32) {
2014-09-11 18:13:50 +02:00
}
2015-09-21 14:42:05 +02:00
#[inline]
pub fn create_window_proxy(&self) -> WindowProxy {
WindowProxy
}
2015-09-21 14:42:05 +02:00
#[inline]
pub fn poll_events(&self) -> PollEventsIterator {
PollEventsIterator {
window: self
2014-11-17 13:32:28 +04:00
}
2014-09-11 18:13:50 +02:00
}
2015-09-21 14:42:05 +02:00
#[inline]
pub fn wait_events(&self) -> WaitEventsIterator {
WaitEventsIterator {
window: self
}
}
2015-09-21 14:42:05 +02:00
#[inline]
pub fn platform_display(&self) -> *mut libc::c_void {
2015-05-01 09:44:35 +02:00
unimplemented!();
}
2014-11-18 17:55:26 +01:00
2015-09-21 14:42:05 +02:00
#[inline]
pub fn platform_window(&self) -> *mut libc::c_void {
unimplemented!()
}
2015-09-21 14:42:05 +02:00
#[inline]
pub fn set_window_resize_callback(&mut self, _: Option<fn(u32, u32)>) {
}
2015-09-21 14:42:05 +02:00
#[inline]
pub fn set_cursor(&self, _: MouseCursor) {
}
2015-09-21 14:42:05 +02:00
#[inline]
pub fn set_cursor_state(&self, state: CursorState) -> Result<(), String> {
Ok(())
}
2015-09-21 14:42:05 +02:00
#[inline]
pub fn hidpi_factor(&self) -> f32 {
1.0
}
2015-03-10 10:29:07 +01:00
2015-09-21 14:42:05 +02:00
#[inline]
2015-03-10 10:29:07 +01:00
pub fn set_cursor_position(&self, x: i32, y: i32) -> Result<(), ()> {
unimplemented!();
}
2014-09-11 18:13:50 +02:00
}
2014-12-29 22:56:15 +01:00
unsafe impl Send for Window {}
unsafe impl Sync for Window {}
2015-01-03 23:11:59 +01:00
#[derive(Clone)]
pub struct WindowProxy;
impl WindowProxy {
2015-09-21 14:42:05 +02:00
#[inline]
pub fn wakeup_event_loop(&self) {
2014-12-19 05:00:43 +10:00
unimplemented!()
}
}