winit-sonoma-fix/src/android/mod.rs

205 lines
5.5 KiB
Rust
Raw Normal View History

2014-09-12 02:13:50 +10:00
extern crate android_glue;
extern crate native;
use {Event, WindowBuilder};
pub struct Window {
display: ffi::egl::types::EGLDisplay,
context: ffi::egl::types::EGLContext,
surface: ffi::egl::types::EGLSurface,
2014-09-12 02:13:50 +10:00
}
pub struct MonitorID;
mod ffi;
compile_warning!("The Android implementation is not fully working yet")
pub fn get_available_monitors() -> Vec<MonitorID> {
vec![ MonitorID ]
}
pub fn get_primary_monitor() -> MonitorID {
MonitorID
}
impl MonitorID {
pub fn get_name(&self) -> Option<String> {
Some("Primary".to_string())
}
pub fn get_dimensions(&self) -> (uint, uint) {
unimplemented!()
}
}
impl Window {
pub fn new(_builder: WindowBuilder) -> Result<Window, String> {
use std::{mem, ptr};
let native_window = unsafe { android_glue::get_native_window() };
if native_window.is_null() {
return Err(format!("Android's native window is null"));
}
let display = unsafe {
let display = ffi::egl::GetDisplay(mem::transmute(ffi::egl::DEFAULT_DISPLAY));
2014-09-12 02:13:50 +10:00
if display.is_null() {
return Err("No EGL display connection available".to_string());
}
display
};
android_glue::write_log("eglGetDisplay succeeded");
let (_major, _minor) = unsafe {
let mut major: ffi::egl::types::EGLint = mem::uninitialized();
let mut minor: ffi::egl::types::EGLint = mem::uninitialized();
2014-09-12 02:13:50 +10:00
if ffi::egl::Initialize(display, &mut major, &mut minor) == 0 {
2014-09-12 02:13:50 +10:00
return Err(format!("eglInitialize failed"))
}
(major, minor)
};
android_glue::write_log("eglInitialize succeeded");
let config = unsafe {
let attribute_list = [
ffi::egl::RED_SIZE as i32, 1,
ffi::egl::GREEN_SIZE as i32, 1,
ffi::egl::BLUE_SIZE as i32, 1,
ffi::egl::NONE as i32
2014-09-12 02:13:50 +10:00
];
let mut num_config: ffi::egl::types::EGLint = mem::uninitialized();
let mut config: ffi::egl::types::EGLConfig = mem::uninitialized();
if ffi::egl::ChooseConfig(display, attribute_list.as_ptr(), &mut config, 1,
&mut num_config) == 0
2014-09-12 02:13:50 +10:00
{
return Err(format!("eglChooseConfig failed"))
}
if num_config <= 0 {
return Err(format!("eglChooseConfig returned no available config"))
}
config
};
android_glue::write_log("eglChooseConfig succeeded");
let context = unsafe {
let context = ffi::egl::CreateContext(display, config, ptr::null(), ptr::null());
2014-09-12 02:13:50 +10:00
if context.is_null() {
return Err(format!("eglCreateContext failed"))
}
context
};
android_glue::write_log("eglCreateContext succeeded");
let surface = unsafe {
let surface = ffi::egl::CreateWindowSurface(display, config, native_window, ptr::null());
2014-09-12 02:13:50 +10:00
if surface.is_null() {
return Err(format!("eglCreateWindowSurface failed"))
}
surface
};
android_glue::write_log("eglCreateWindowSurface succeeded");
Ok(Window {
display: display,
context: context,
surface: surface,
})
}
pub fn is_closed(&self) -> bool {
false
}
pub fn set_title(&self, _: &str) {
}
pub fn get_position(&self) -> Option<(int, int)> {
None
}
pub fn set_position(&self, _x: int, _y: int) {
}
pub fn get_inner_size(&self) -> Option<(uint, uint)> {
let native_window = unsafe { android_glue::get_native_window() };
if native_window.is_null() {
None
} else {
Some((
unsafe { ffi::ANativeWindow_getWidth(native_window) } as uint,
unsafe { ffi::ANativeWindow_getHeight(native_window) } as uint
))
}
}
pub fn get_outer_size(&self) -> Option<(uint, uint)> {
self.get_inner_size()
}
pub fn set_inner_size(&self, _x: uint, _y: uint) {
}
pub fn poll_events(&self) -> Vec<Event> {
use std::time::Duration;
use std::io::timer;
timer::sleep(Duration::milliseconds(16));
Vec::new()
}
pub fn wait_events(&self) -> Vec<Event> {
use std::time::Duration;
use std::io::timer;
timer::sleep(Duration::milliseconds(16));
Vec::new()
}
pub fn make_current(&self) {
unsafe {
ffi::egl::MakeCurrent(self.display, self.surface, self.surface, self.context);
2014-09-12 02:13:50 +10:00
}
}
pub fn get_proc_address(&self, addr: &str) -> *const () {
use std::c_str::ToCStr;
unsafe {
addr.with_c_str(|s| {
ffi::egl::GetProcAddress(s) as *const ()
2014-09-12 02:13:50 +10:00
})
}
}
pub fn swap_buffers(&self) {
unsafe {
ffi::egl::SwapBuffers(self.display, self.surface);
2014-09-12 02:13:50 +10:00
}
}
}
#[unsafe_destructor]
impl Drop for Window {
fn drop(&mut self) {
use std::ptr;
unsafe {
android_glue::write_log("Destroying gl-init window");
ffi::egl::MakeCurrent(self.display, ptr::null(), ptr::null(), ptr::null());
ffi::egl::DestroySurface(self.display, self.surface);
ffi::egl::DestroyContext(self.display, self.context);
ffi::egl::Terminate(self.display);
2014-09-12 02:13:50 +10:00
}
}
}