2015-04-24 09:51:23 +02:00
|
|
|
#![cfg(target_os = "android")]
|
|
|
|
|
|
2016-10-31 17:08:55 +01:00
|
|
|
extern crate android_glue;
|
|
|
|
|
|
|
|
|
|
use libc;
|
|
|
|
|
use std::sync::mpsc::{Receiver, channel};
|
|
|
|
|
use std::os::raw::c_void;
|
2017-09-04 12:41:02 +02:00
|
|
|
use {CreationError, Event, WindowEvent, MouseCursor};
|
2016-10-31 17:08:55 +01:00
|
|
|
use CreationError::OsError;
|
2017-09-04 12:41:02 +02:00
|
|
|
use WindowId as RootWindowId;
|
2016-10-31 17:08:55 +01:00
|
|
|
use events::{Touch, TouchPhase};
|
2017-09-07 09:33:46 +01:00
|
|
|
use window::MonitorId as RootMonitorId;
|
2016-10-31 17:08:55 +01:00
|
|
|
|
|
|
|
|
use std::collections::VecDeque;
|
|
|
|
|
|
|
|
|
|
use CursorState;
|
|
|
|
|
use WindowAttributes;
|
|
|
|
|
|
2017-09-04 12:41:02 +02:00
|
|
|
pub struct EventsLoop {
|
2016-10-31 17:08:55 +01:00
|
|
|
event_rx: Receiver<android_glue::Event>,
|
|
|
|
|
}
|
|
|
|
|
|
2017-10-25 11:03:57 -07:00
|
|
|
#[derive(Clone)]
|
2017-09-04 12:41:02 +02:00
|
|
|
pub struct EventsLoopProxy;
|
2016-10-31 17:08:55 +01:00
|
|
|
|
2017-09-04 12:41:02 +02:00
|
|
|
impl EventsLoop {
|
|
|
|
|
pub fn new() -> EventsLoop {
|
|
|
|
|
let (tx, rx) = channel();
|
|
|
|
|
android_glue::add_sender(tx);
|
|
|
|
|
EventsLoop {
|
|
|
|
|
event_rx: rx,
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-10-31 17:08:55 +01:00
|
|
|
|
|
|
|
|
#[inline]
|
2017-09-04 12:41:02 +02:00
|
|
|
pub fn get_available_monitors(&self) -> VecDeque<MonitorId> {
|
|
|
|
|
let mut rb = VecDeque::new();
|
|
|
|
|
rb.push_back(MonitorId);
|
|
|
|
|
rb
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
2017-09-04 12:41:02 +02:00
|
|
|
pub fn get_primary_monitor(&self) -> MonitorId {
|
|
|
|
|
MonitorId
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
|
2017-10-29 02:02:57 -04:00
|
|
|
|
2017-09-04 12:41:02 +02:00
|
|
|
pub fn poll_events<F>(&mut self, mut callback: F)
|
|
|
|
|
where F: FnMut(::Event)
|
|
|
|
|
{
|
2017-10-29 02:02:57 -04:00
|
|
|
while let Ok(event) = self.event_rx.try_recv() {
|
|
|
|
|
|
|
|
|
|
let e = match event{
|
|
|
|
|
android_glue::Event::EventMotion(motion) => {
|
|
|
|
|
Some(Event::WindowEvent {
|
|
|
|
|
window_id: RootWindowId(WindowId),
|
|
|
|
|
event: WindowEvent::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,
|
|
|
|
|
device_id: DEVICE_ID,
|
|
|
|
|
}),
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
android_glue::Event::InitWindow => {
|
|
|
|
|
// The activity went to foreground.
|
|
|
|
|
Some(Event::Suspended(false))
|
|
|
|
|
},
|
|
|
|
|
android_glue::Event::TermWindow => {
|
|
|
|
|
// The activity went to background.
|
|
|
|
|
Some(Event::Suspended(true))
|
|
|
|
|
},
|
|
|
|
|
android_glue::Event::WindowResized |
|
|
|
|
|
android_glue::Event::ConfigChanged => {
|
|
|
|
|
// Activity Orientation changed or resized.
|
|
|
|
|
let native_window = unsafe { android_glue::get_native_window() };
|
|
|
|
|
if native_window.is_null() {
|
|
|
|
|
None
|
|
|
|
|
} else {
|
|
|
|
|
let w = unsafe { ffi::ANativeWindow_getWidth(native_window as *const _) } as u32;
|
|
|
|
|
let h = unsafe { ffi::ANativeWindow_getHeight(native_window as *const _) } as u32;
|
|
|
|
|
Some(Event::WindowEvent {
|
|
|
|
|
window_id: RootWindowId(WindowId),
|
|
|
|
|
event: WindowEvent::Resized(w, h),
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
android_glue::Event::WindowRedrawNeeded => {
|
|
|
|
|
// The activity needs to be redrawn.
|
2017-09-15 16:24:09 +02:00
|
|
|
Some(Event::WindowEvent {
|
|
|
|
|
window_id: RootWindowId(WindowId),
|
2017-10-29 02:02:57 -04:00
|
|
|
event: WindowEvent::Refresh,
|
2017-09-15 16:24:09 +02:00
|
|
|
})
|
2017-09-04 12:41:02 +02:00
|
|
|
}
|
2017-10-29 02:02:57 -04:00
|
|
|
_ => {
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if let Some(event) = e {
|
|
|
|
|
callback(event);
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
2017-09-04 12:41:02 +02:00
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn run_forever<F>(&mut self, mut callback: F)
|
|
|
|
|
where F: FnMut(::Event) -> ::ControlFlow,
|
|
|
|
|
{
|
|
|
|
|
// Yeah that's a very bad implementation.
|
|
|
|
|
loop {
|
|
|
|
|
let mut control_flow = ::ControlFlow::Continue;
|
|
|
|
|
self.poll_events(|e| {
|
|
|
|
|
if let ::ControlFlow::Break = callback(e) {
|
|
|
|
|
control_flow = ::ControlFlow::Break;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
if let ::ControlFlow::Break = control_flow {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
::std::thread::sleep(::std::time::Duration::from_millis(5));
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
}
|
2017-09-04 12:41:02 +02:00
|
|
|
|
|
|
|
|
pub fn create_proxy(&self) -> EventsLoopProxy {
|
|
|
|
|
EventsLoopProxy
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl EventsLoopProxy {
|
|
|
|
|
pub fn wakeup(&self) -> Result<(), ::EventsLoopClosed> {
|
|
|
|
|
android_glue::wake_event_loop();
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
|
2017-09-04 12:41:02 +02:00
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
|
|
|
pub struct WindowId;
|
|
|
|
|
|
|
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
|
|
|
pub struct DeviceId;
|
|
|
|
|
|
2017-09-06 17:32:24 +02:00
|
|
|
pub struct Window {
|
2017-09-04 12:41:02 +02:00
|
|
|
native_window: *const c_void,
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
|
2017-09-04 12:41:02 +02:00
|
|
|
#[derive(Clone)]
|
|
|
|
|
pub struct MonitorId;
|
|
|
|
|
|
|
|
|
|
mod ffi;
|
2016-10-31 17:08:55 +01:00
|
|
|
|
2017-09-04 12:41:02 +02:00
|
|
|
impl MonitorId {
|
2016-10-31 17:08:55 +01:00
|
|
|
#[inline]
|
2017-09-04 12:41:02 +02:00
|
|
|
pub fn get_name(&self) -> Option<String> {
|
|
|
|
|
Some("Primary".to_string())
|
|
|
|
|
}
|
2016-10-31 17:08:55 +01:00
|
|
|
|
2017-09-04 12:41:02 +02:00
|
|
|
#[inline]
|
|
|
|
|
pub fn get_dimensions(&self) -> (u32, u32) {
|
|
|
|
|
unimplemented!()
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
2017-09-07 09:33:46 +01:00
|
|
|
|
|
|
|
|
#[inline]
|
2017-10-19 20:08:05 +03:00
|
|
|
pub fn get_position(&self) -> (i32, i32) {
|
2017-09-07 09:33:46 +01:00
|
|
|
// Android assumes single screen
|
|
|
|
|
(0, 0)
|
|
|
|
|
}
|
2017-10-17 14:56:38 +03:00
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn get_hidpi_factor(&self) -> f32 {
|
|
|
|
|
1.0
|
|
|
|
|
}
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
|
2017-09-04 12:41:02 +02:00
|
|
|
#[derive(Clone, Default)]
|
|
|
|
|
pub struct PlatformSpecificWindowBuilderAttributes;
|
|
|
|
|
#[derive(Clone, Default)]
|
|
|
|
|
pub struct PlatformSpecificHeadlessBuilderAttributes;
|
2016-10-31 17:08:55 +01:00
|
|
|
|
2017-09-06 17:32:24 +02:00
|
|
|
impl Window {
|
2017-09-04 12:41:02 +02:00
|
|
|
pub fn new(_: &EventsLoop, win_attribs: &WindowAttributes,
|
|
|
|
|
_: &PlatformSpecificWindowBuilderAttributes)
|
2017-09-06 17:32:24 +02:00
|
|
|
-> Result<Window, CreationError>
|
2017-09-04 12:41:02 +02:00
|
|
|
{
|
2016-10-31 17:08:55 +01:00
|
|
|
// not implemented
|
|
|
|
|
assert!(win_attribs.min_dimensions.is_none());
|
|
|
|
|
assert!(win_attribs.max_dimensions.is_none());
|
|
|
|
|
|
|
|
|
|
let native_window = unsafe { android_glue::get_native_window() };
|
|
|
|
|
if native_window.is_null() {
|
|
|
|
|
return Err(OsError(format!("Android's native window is null")));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
android_glue::set_multitouch(win_attribs.multitouch);
|
|
|
|
|
|
2017-09-06 17:32:24 +02:00
|
|
|
Ok(Window {
|
2016-10-31 17:08:55 +01:00
|
|
|
native_window: native_window as *const _,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn get_native_window(&self) -> *const c_void {
|
|
|
|
|
self.native_window
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn set_title(&self, _: &str) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn show(&self) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn hide(&self) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn get_position(&self) -> Option<(i32, i32)> {
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn set_position(&self, _x: i32, _y: i32) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn get_inner_size(&self) -> Option<(u32, u32)> {
|
2017-09-04 12:41:02 +02:00
|
|
|
if self.native_window.is_null() {
|
2016-10-31 17:08:55 +01:00
|
|
|
None
|
|
|
|
|
} else {
|
|
|
|
|
Some((
|
2017-09-04 12:41:02 +02:00
|
|
|
unsafe { ffi::ANativeWindow_getWidth(self.native_window as *const _) } as u32,
|
|
|
|
|
unsafe { ffi::ANativeWindow_getHeight(self.native_window as *const _) } as u32
|
2016-10-31 17:08:55 +01:00
|
|
|
))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn get_outer_size(&self) -> Option<(u32, u32)> {
|
|
|
|
|
self.get_inner_size()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn set_inner_size(&self, _x: u32, _y: u32) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn platform_display(&self) -> *mut libc::c_void {
|
|
|
|
|
unimplemented!();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn platform_window(&self) -> *mut libc::c_void {
|
|
|
|
|
unimplemented!()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn set_cursor(&self, _: MouseCursor) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
2017-09-04 12:41:02 +02:00
|
|
|
pub fn set_cursor_state(&self, _state: CursorState) -> Result<(), String> {
|
2016-10-31 17:08:55 +01:00
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn hidpi_factor(&self) -> f32 {
|
|
|
|
|
1.0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
2017-09-04 12:41:02 +02:00
|
|
|
pub fn set_cursor_position(&self, _x: i32, _y: i32) -> Result<(), ()> {
|
|
|
|
|
Ok(())
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
2017-08-28 00:22:26 +01:00
|
|
|
|
2017-08-28 01:43:34 +01:00
|
|
|
#[inline]
|
2017-09-04 12:41:02 +02:00
|
|
|
pub fn set_maximized(&self, _maximized: bool) {
|
2017-09-07 09:33:46 +01:00
|
|
|
// Android has single screen maximized apps so nothing to do
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn set_fullscreen(&self, _monitor: Option<RootMonitorId>) {
|
|
|
|
|
// Android has single screen maximized apps so nothing to do
|
2017-08-28 01:43:34 +01:00
|
|
|
}
|
|
|
|
|
|
2017-08-28 00:22:26 +01:00
|
|
|
#[inline]
|
2017-09-07 09:33:46 +01:00
|
|
|
pub fn get_current_monitor(&self) -> RootMonitorId {
|
|
|
|
|
RootMonitorId{inner: MonitorId}
|
2017-08-28 00:22:26 +01:00
|
|
|
}
|
2016-10-31 17:08:55 +01:00
|
|
|
|
2017-09-04 12:41:02 +02:00
|
|
|
pub fn id(&self) -> WindowId {
|
|
|
|
|
WindowId
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
}
|
2017-07-06 23:33:42 +02:00
|
|
|
|
2017-09-06 17:32:24 +02:00
|
|
|
unsafe impl Send for Window {}
|
|
|
|
|
unsafe impl Sync for Window {}
|
2017-09-04 12:41:02 +02:00
|
|
|
|
2017-07-06 23:33:42 +02:00
|
|
|
// Constant device ID, to be removed when this backend is updated to report real device IDs.
|
|
|
|
|
const DEVICE_ID: ::DeviceId = ::DeviceId(DeviceId);
|