2015-04-24 09:51:23 +02:00
|
|
|
#![cfg(target_os = "android")]
|
|
|
|
|
|
2014-09-11 18:13:50 +02:00
|
|
|
extern crate android_glue;
|
|
|
|
|
|
2014-10-24 12:54:58 +02:00
|
|
|
use libc;
|
2015-01-08 20:57:04 +03:00
|
|
|
use std::ffi::{CString};
|
2015-01-04 21:49:00 +03:00
|
|
|
use std::sync::mpsc::{Receiver, channel};
|
2015-01-13 15:21:36 +03:00
|
|
|
use {CreationError, Event, MouseCursor};
|
2014-11-19 06:09:54 +01:00
|
|
|
use CreationError::OsError;
|
|
|
|
|
use events::ElementState::{Pressed, Released};
|
2015-09-22 09:22:46 -07:00
|
|
|
use events::{Touch, TouchPhase};
|
2014-09-11 18:13:50 +02:00
|
|
|
|
2015-02-22 00:40:23 +11:00
|
|
|
use std::collections::VecDeque;
|
2015-01-01 23:09:16 -08:00
|
|
|
|
2015-02-18 16:49:53 +01:00
|
|
|
use Api;
|
2015-06-16 10:15:31 +02:00
|
|
|
use ContextError;
|
2015-03-26 17:04:01 +01:00
|
|
|
use CursorState;
|
2015-09-21 13:15:43 +02:00
|
|
|
use GlAttributes;
|
2015-05-01 09:44:35 +02:00
|
|
|
use GlContext;
|
2015-02-18 16:49:53 +01:00
|
|
|
use GlRequest;
|
2015-04-11 09:06:08 +02:00
|
|
|
use PixelFormat;
|
2015-09-21 13:15:43 +02:00
|
|
|
use PixelFormatRequirements;
|
|
|
|
|
use WindowAttributes;
|
2015-03-18 14:16:35 -07:00
|
|
|
use native_monitor::NativeMonitorId;
|
2014-11-26 08:15:24 +10:00
|
|
|
|
2015-05-01 09:44:35 +02:00
|
|
|
use api::egl;
|
|
|
|
|
use api::egl::Context as EglContext;
|
|
|
|
|
|
2014-09-11 18:13:50 +02:00
|
|
|
pub struct Window {
|
2015-05-01 09:44:35 +02:00
|
|
|
context: EglContext,
|
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)]
|
2014-09-11 18:13:50 +02:00
|
|
|
pub struct MonitorID;
|
|
|
|
|
|
|
|
|
|
mod ffi;
|
|
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2015-05-01 09:44:35 +02:00
|
|
|
pub fn get_available_monitors() -> VecDeque<MonitorID> {
|
2015-02-22 00:40:23 +11:00
|
|
|
let mut rb = VecDeque::new();
|
2015-01-04 21:49:00 +03:00
|
|
|
rb.push_back(MonitorID);
|
2015-01-01 23:09:16 -08:00
|
|
|
rb
|
2014-09-11 18:13:50 +02:00
|
|
|
}
|
|
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2014-09-11 18:13:50 +02:00
|
|
|
pub fn get_primary_monitor() -> MonitorID {
|
|
|
|
|
MonitorID
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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]
|
2015-03-18 14:16:35 -07:00
|
|
|
pub fn get_native_identifier(&self) -> NativeMonitorId {
|
|
|
|
|
NativeMonitorId::Unavailable
|
2015-03-16 13:52:58 -07:00
|
|
|
}
|
|
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2015-01-13 15:21:36 +03:00
|
|
|
pub fn get_dimensions(&self) -> (u32, u32) {
|
2014-09-11 18:13:50 +02:00
|
|
|
unimplemented!()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-10 13:59:20 +10:00
|
|
|
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() {
|
2015-09-22 09:22:46 -07:00
|
|
|
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,
|
|
|
|
|
}))
|
2015-02-10 13:59:20 +10:00
|
|
|
}
|
2015-09-22 09:22:46 -07:00
|
|
|
_ => {
|
2015-02-10 13:59:20 +10:00
|
|
|
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]
|
2015-02-10 13:59:20 +10:00
|
|
|
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
|
2015-04-18 21:12:40 +03:00
|
|
|
// timer::sleep(Duration::milliseconds(16));
|
2015-02-10 13:59:20 +10:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-11 18:13:50 +02:00
|
|
|
impl Window {
|
2015-09-21 13:15:43 +02:00
|
|
|
pub fn new(win_attribs: &WindowAttributes, pf_reqs: &PixelFormatRequirements,
|
|
|
|
|
opengl: &GlAttributes<&Window>) -> Result<Window, CreationError>
|
|
|
|
|
{
|
2014-09-11 18:13:50 +02:00
|
|
|
use std::{mem, ptr};
|
|
|
|
|
|
2015-09-21 13:15:43 +02:00
|
|
|
let opengl = opengl.clone().map_sharing(|w| &w.context);
|
|
|
|
|
|
2014-09-11 18:13:50 +02:00
|
|
|
let native_window = unsafe { android_glue::get_native_window() };
|
|
|
|
|
if native_window.is_null() {
|
2014-11-05 16:42:18 +01:00
|
|
|
return Err(OsError(format!("Android's native window is null")));
|
2014-09-11 18:13:50 +02:00
|
|
|
}
|
|
|
|
|
|
2015-09-21 13:15:43 +02:00
|
|
|
let context = try!(EglContext::new(egl::ffi::egl::Egl, pf_reqs, &opengl,
|
2015-09-21 10:11:32 +02:00
|
|
|
egl::NativeDisplay::Android)
|
2015-07-18 18:32:02 +02:00
|
|
|
.and_then(|p| p.finish(native_window as *const _)));
|
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);
|
|
|
|
|
|
2014-09-11 18:13:50 +02:00
|
|
|
Ok(Window {
|
|
|
|
|
context: context,
|
2014-11-17 13:32:28 +04:00
|
|
|
event_rx: rx,
|
2014-09-11 18:13:50 +02:00
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
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]
|
2014-11-01 09:02:01 +01:00
|
|
|
pub fn show(&self) {
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2014-11-01 09:02:01 +01:00
|
|
|
pub fn hide(&self) {
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2015-01-13 15:21:36 +03:00
|
|
|
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]
|
2015-01-13 15:21:36 +03:00
|
|
|
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]
|
2015-01-13 15:21:36 +03:00
|
|
|
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((
|
2015-01-13 15:21:36 +03:00
|
|
|
unsafe { ffi::ANativeWindow_getWidth(native_window) } as u32,
|
|
|
|
|
unsafe { ffi::ANativeWindow_getHeight(native_window) } as u32
|
2014-09-11 18:13:50 +02:00
|
|
|
))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2015-01-13 15:21:36 +03:00
|
|
|
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]
|
2015-01-13 15:21:36 +03:00
|
|
|
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]
|
2014-12-17 14:49:11 +10:00
|
|
|
pub fn create_window_proxy(&self) -> WindowProxy {
|
|
|
|
|
WindowProxy
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2015-02-10 13:59:20 +10:00
|
|
|
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]
|
2015-02-10 13:59:20 +10:00
|
|
|
pub fn wait_events(&self) -> WaitEventsIterator {
|
|
|
|
|
WaitEventsIterator {
|
|
|
|
|
window: self
|
|
|
|
|
}
|
2014-12-26 01:29:54 +03:00
|
|
|
}
|
|
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2014-10-24 15:20:25 +10:00
|
|
|
pub fn platform_display(&self) -> *mut libc::c_void {
|
2015-05-01 09:44:35 +02:00
|
|
|
unimplemented!();
|
2014-10-24 15:20:25 +10:00
|
|
|
}
|
2014-11-18 17:55:26 +01:00
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2015-02-20 12:32:40 -08:00
|
|
|
pub fn platform_window(&self) -> *mut libc::c_void {
|
|
|
|
|
unimplemented!()
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2015-04-11 09:06:08 +02:00
|
|
|
pub fn get_pixel_format(&self) -> PixelFormat {
|
|
|
|
|
unimplemented!();
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2015-01-13 15:21:36 +03:00
|
|
|
pub fn set_window_resize_callback(&mut self, _: Option<fn(u32, u32)>) {
|
2014-12-16 15:49:22 +10:00
|
|
|
}
|
2015-01-12 16:22:37 -08:00
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2015-01-13 15:21:36 +03:00
|
|
|
pub fn set_cursor(&self, _: MouseCursor) {
|
2015-01-12 16:22:37 -08:00
|
|
|
}
|
2014-12-19 11:27:03 +10:00
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2015-03-26 17:04:01 +01:00
|
|
|
pub fn set_cursor_state(&self, state: CursorState) -> Result<(), String> {
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
2015-01-25 12:06:50 +01:00
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2014-12-19 11:27:03 +10:00
|
|
|
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-05-01 09:44:35 +02:00
|
|
|
impl GlContext for Window {
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2015-06-16 10:15:31 +02:00
|
|
|
unsafe fn make_current(&self) -> Result<(), ContextError> {
|
2015-05-01 09:44:35 +02:00
|
|
|
self.context.make_current()
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2015-05-01 09:44:35 +02:00
|
|
|
fn is_current(&self) -> bool {
|
|
|
|
|
self.context.is_current()
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2015-05-01 09:44:35 +02:00
|
|
|
fn get_proc_address(&self, addr: &str) -> *const libc::c_void {
|
|
|
|
|
self.context.get_proc_address(addr)
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2015-06-16 10:15:31 +02:00
|
|
|
fn swap_buffers(&self) -> Result<(), ContextError> {
|
2015-05-01 09:44:35 +02:00
|
|
|
self.context.swap_buffers()
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2015-05-01 09:44:35 +02:00
|
|
|
fn get_api(&self) -> Api {
|
|
|
|
|
self.context.get_api()
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2015-05-01 09:44:35 +02:00
|
|
|
fn get_pixel_format(&self) -> PixelFormat {
|
|
|
|
|
self.context.get_pixel_format()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-17 14:49:11 +10:00
|
|
|
#[cfg(feature = "window")]
|
2015-01-03 23:11:59 +01:00
|
|
|
#[derive(Clone)]
|
2014-12-17 14:49:11 +10:00
|
|
|
pub struct WindowProxy;
|
|
|
|
|
|
|
|
|
|
impl WindowProxy {
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2014-12-17 14:49:11 +10:00
|
|
|
pub fn wakeup_event_loop(&self) {
|
2014-12-19 05:00:43 +10:00
|
|
|
unimplemented!()
|
2014-12-17 14:49:11 +10:00
|
|
|
}
|
|
|
|
|
}
|
2015-07-27 10:18:45 +02:00
|
|
|
|
|
|
|
|
pub struct HeadlessContext(EglContext);
|
|
|
|
|
|
|
|
|
|
impl HeadlessContext {
|
|
|
|
|
/// See the docs in the crate root file.
|
2015-09-21 13:15:43 +02:00
|
|
|
pub fn new(dimensions: (u32, u32), pf_reqs: &PixelFormatRequirements,
|
|
|
|
|
opengl: &GlAttributes<&HeadlessContext>) -> Result<HeadlessContext, CreationError>
|
|
|
|
|
{
|
|
|
|
|
let opengl = opengl.clone().map_sharing(|c| &c.0);
|
|
|
|
|
let context = try!(EglContext::new(egl::ffi::egl::Egl, pf_reqs, &opengl,
|
|
|
|
|
egl::NativeDisplay::Android));
|
|
|
|
|
let context = try!(context.finish_pbuffer(dimensions)); // TODO:
|
2015-08-28 08:58:17 +10:00
|
|
|
Ok(HeadlessContext(context))
|
2015-07-27 10:18:45 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsafe impl Send for HeadlessContext {}
|
|
|
|
|
unsafe impl Sync for HeadlessContext {}
|
|
|
|
|
|
|
|
|
|
impl GlContext for HeadlessContext {
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2015-07-27 10:18:45 +02:00
|
|
|
unsafe fn make_current(&self) -> Result<(), ContextError> {
|
|
|
|
|
self.0.make_current()
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2015-07-27 10:18:45 +02:00
|
|
|
fn is_current(&self) -> bool {
|
|
|
|
|
self.0.is_current()
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2015-07-27 10:18:45 +02:00
|
|
|
fn get_proc_address(&self, addr: &str) -> *const libc::c_void {
|
|
|
|
|
self.0.get_proc_address(addr)
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2015-07-27 10:18:45 +02:00
|
|
|
fn swap_buffers(&self) -> Result<(), ContextError> {
|
|
|
|
|
self.0.swap_buffers()
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2015-07-27 10:18:45 +02:00
|
|
|
fn get_api(&self) -> Api {
|
|
|
|
|
self.0.get_api()
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2015-07-27 10:18:45 +02:00
|
|
|
fn get_pixel_format(&self) -> PixelFormat {
|
|
|
|
|
self.0.get_pixel_format()
|
|
|
|
|
}
|
|
|
|
|
}
|