2018-10-02 21:37:24 +00:00
|
|
|
use std::{
|
|
|
|
cell::RefCell,
|
|
|
|
rc::Rc,
|
2019-06-17 01:10:50 +00:00
|
|
|
sync::{
|
|
|
|
atomic::{AtomicBool, Ordering},
|
|
|
|
Arc, Mutex,
|
|
|
|
},
|
2018-10-02 21:37:24 +00:00
|
|
|
};
|
2017-06-11 21:03:25 +00:00
|
|
|
|
2018-10-02 21:37:24 +00:00
|
|
|
use smithay::{
|
2018-11-22 09:10:30 +00:00
|
|
|
backend::{egl::EGLGraphicsBackend, graphics::gl::GLGraphicsBackend, input::InputBackend, winit},
|
2019-02-05 16:26:09 +00:00
|
|
|
reexports::{
|
|
|
|
calloop::EventLoop,
|
|
|
|
wayland_server::{protocol::wl_output, Display},
|
|
|
|
},
|
2018-10-02 21:37:24 +00:00
|
|
|
wayland::{
|
2018-12-10 08:18:00 +00:00
|
|
|
data_device::{default_action_chooser, init_data_device, set_data_device_focus, DataDeviceEvent},
|
2018-10-02 21:37:24 +00:00
|
|
|
output::{Mode, Output, PhysicalProperties},
|
2018-12-10 08:18:00 +00:00
|
|
|
seat::{CursorImageStatus, Seat, XkbConfig},
|
2018-10-02 21:37:24 +00:00
|
|
|
shm::init_shm_global,
|
|
|
|
},
|
|
|
|
};
|
2018-05-07 17:56:38 +00:00
|
|
|
|
|
|
|
use slog::Logger;
|
|
|
|
|
2020-02-03 05:42:12 +00:00
|
|
|
use crate::buffer_utils::BufferUtils;
|
2018-12-15 20:32:28 +00:00
|
|
|
use crate::glium_drawer::GliumDrawer;
|
|
|
|
use crate::input_handler::AnvilInputHandler;
|
|
|
|
use crate::shell::init_shell;
|
2020-04-05 17:01:08 +00:00
|
|
|
use crate::AnvilState;
|
2017-09-03 17:53:29 +00:00
|
|
|
|
2020-04-10 15:01:49 +00:00
|
|
|
pub fn run_winit(
|
|
|
|
display: &mut Display,
|
|
|
|
event_loop: &mut EventLoop<AnvilState>,
|
|
|
|
log: Logger,
|
|
|
|
) -> Result<(), ()> {
|
2018-05-07 17:56:38 +00:00
|
|
|
let (renderer, mut input) = winit::init(log.clone()).map_err(|_| ())?;
|
2017-03-07 10:53:57 +00:00
|
|
|
|
2018-12-15 19:18:38 +00:00
|
|
|
#[cfg(feature = "egl")]
|
2020-04-15 20:19:20 +00:00
|
|
|
let egl_buffer_reader = Rc::new(RefCell::new(
|
|
|
|
if let Ok(egl_buffer_reader) = renderer.bind_wl_display(&display) {
|
2018-01-05 19:04:46 +00:00
|
|
|
info!(log, "EGL hardware-acceleration enabled");
|
2020-04-15 20:19:20 +00:00
|
|
|
Some(egl_buffer_reader)
|
2018-01-05 19:04:46 +00:00
|
|
|
} else {
|
|
|
|
None
|
2018-01-07 21:30:38 +00:00
|
|
|
},
|
2018-01-05 19:04:46 +00:00
|
|
|
));
|
2017-12-21 15:01:16 +00:00
|
|
|
|
2017-12-28 14:28:15 +00:00
|
|
|
let (w, h) = renderer.get_framebuffer_dimensions();
|
2018-12-15 19:18:38 +00:00
|
|
|
#[cfg(feature = "egl")]
|
2020-04-15 20:19:20 +00:00
|
|
|
let drawer = GliumDrawer::init(renderer, egl_buffer_reader.clone(), log.clone());
|
2018-12-15 19:18:38 +00:00
|
|
|
#[cfg(not(feature = "egl"))]
|
|
|
|
let drawer = GliumDrawer::init(renderer, log.clone());
|
2017-12-21 15:01:16 +00:00
|
|
|
|
2020-02-03 05:42:12 +00:00
|
|
|
#[cfg(feature = "egl")]
|
2020-04-15 20:19:20 +00:00
|
|
|
let buffer_utils = BufferUtils::new(egl_buffer_reader, log.clone());
|
2020-02-03 05:42:12 +00:00
|
|
|
#[cfg(not(feature = "egl"))]
|
|
|
|
let buffer_utils = BufferUtils::new(log.clone());
|
|
|
|
|
2018-05-07 17:56:38 +00:00
|
|
|
let name = display.add_socket_auto().unwrap().into_string().unwrap();
|
|
|
|
info!(log, "Listening on wayland socket"; "name" => name.clone());
|
|
|
|
::std::env::set_var("WAYLAND_DISPLAY", name);
|
|
|
|
|
2018-05-08 10:47:09 +00:00
|
|
|
let running = Arc::new(AtomicBool::new(true));
|
|
|
|
|
2017-06-11 21:03:25 +00:00
|
|
|
/*
|
2017-09-20 13:03:58 +00:00
|
|
|
* Initialize the globals
|
2017-06-11 21:03:25 +00:00
|
|
|
*/
|
2017-06-13 14:52:43 +00:00
|
|
|
|
2018-09-24 22:30:39 +00:00
|
|
|
init_shm_global(display, vec![], log.clone());
|
2017-06-11 21:03:25 +00:00
|
|
|
|
2020-02-03 05:42:12 +00:00
|
|
|
let (compositor_token, _, _, window_map) = init_shell(display, buffer_utils, log.clone());
|
2017-03-07 10:53:57 +00:00
|
|
|
|
2018-12-10 08:18:00 +00:00
|
|
|
let dnd_icon = Arc::new(Mutex::new(None));
|
|
|
|
|
|
|
|
let dnd_icon2 = dnd_icon.clone();
|
2018-11-22 15:02:01 +00:00
|
|
|
init_data_device(
|
|
|
|
display,
|
2018-12-10 08:18:00 +00:00
|
|
|
move |event| match event {
|
|
|
|
DataDeviceEvent::DnDStarted { icon, .. } => {
|
|
|
|
*dnd_icon2.lock().unwrap() = icon;
|
|
|
|
}
|
|
|
|
DataDeviceEvent::DnDDropped => {
|
|
|
|
*dnd_icon2.lock().unwrap() = None;
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
},
|
2018-11-22 15:02:01 +00:00
|
|
|
default_action_chooser,
|
2020-01-01 10:43:16 +00:00
|
|
|
compositor_token,
|
2018-11-22 15:02:01 +00:00
|
|
|
log.clone(),
|
|
|
|
);
|
2018-11-18 18:39:33 +00:00
|
|
|
|
2020-01-01 10:43:16 +00:00
|
|
|
let (mut seat, _) = Seat::new(display, "winit".into(), compositor_token, log.clone());
|
2017-09-22 12:57:11 +00:00
|
|
|
|
2018-12-10 08:18:00 +00:00
|
|
|
let cursor_status = Arc::new(Mutex::new(CursorImageStatus::Default));
|
|
|
|
|
|
|
|
let cursor_status2 = cursor_status.clone();
|
|
|
|
let pointer = seat.add_pointer(compositor_token.clone(), move |new_status| {
|
|
|
|
// TODO: hide winit system cursor when relevant
|
|
|
|
*cursor_status2.lock().unwrap() = new_status
|
|
|
|
});
|
2018-11-18 18:39:33 +00:00
|
|
|
|
2018-09-24 22:32:09 +00:00
|
|
|
let keyboard = seat
|
2018-11-18 18:39:33 +00:00
|
|
|
.add_keyboard(XkbConfig::default(), 1000, 500, |seat, focus| {
|
2019-02-22 21:50:46 +00:00
|
|
|
set_data_device_focus(seat, focus.and_then(|s| s.as_ref().client()))
|
2018-12-08 17:31:08 +00:00
|
|
|
})
|
|
|
|
.expect("Failed to initialize the keyboard");
|
2017-06-13 14:52:43 +00:00
|
|
|
|
2018-04-22 09:58:39 +00:00
|
|
|
let (output, _) = Output::new(
|
2018-05-07 17:56:38 +00:00
|
|
|
display,
|
2017-10-01 17:14:25 +00:00
|
|
|
"Winit".into(),
|
|
|
|
PhysicalProperties {
|
|
|
|
width: 0,
|
|
|
|
height: 0,
|
|
|
|
subpixel: wl_output::Subpixel::Unknown,
|
2018-09-24 22:30:39 +00:00
|
|
|
make: "Smithay".into(),
|
2017-10-01 17:14:25 +00:00
|
|
|
model: "Winit".into(),
|
|
|
|
},
|
|
|
|
log.clone(),
|
|
|
|
);
|
|
|
|
|
2018-04-22 09:58:39 +00:00
|
|
|
output.change_current_state(
|
|
|
|
Some(Mode {
|
2017-10-01 17:14:25 +00:00
|
|
|
width: w as i32,
|
|
|
|
height: h as i32,
|
|
|
|
refresh: 60_000,
|
2018-04-22 09:58:39 +00:00
|
|
|
}),
|
|
|
|
None,
|
|
|
|
None,
|
2018-01-12 14:49:55 +00:00
|
|
|
);
|
2018-04-22 09:58:39 +00:00
|
|
|
output.set_preferred(Mode {
|
|
|
|
width: w as i32,
|
|
|
|
height: h as i32,
|
|
|
|
refresh: 60_000,
|
|
|
|
});
|
|
|
|
|
2018-12-10 08:18:00 +00:00
|
|
|
let pointer_location = Rc::new(RefCell::new((0.0, 0.0)));
|
|
|
|
|
2018-05-08 10:47:09 +00:00
|
|
|
input.set_handler(AnvilInputHandler::new(
|
|
|
|
log.clone(),
|
2018-04-22 09:58:39 +00:00
|
|
|
pointer,
|
|
|
|
keyboard,
|
2018-05-08 10:47:09 +00:00
|
|
|
window_map.clone(),
|
|
|
|
(0, 0),
|
|
|
|
running.clone(),
|
2018-12-10 08:18:00 +00:00
|
|
|
pointer_location.clone(),
|
2018-05-08 10:47:09 +00:00
|
|
|
));
|
2017-09-22 12:57:11 +00:00
|
|
|
|
2018-05-07 17:56:38 +00:00
|
|
|
info!(log, "Initialization completed, starting the main loop.");
|
2017-03-07 10:53:57 +00:00
|
|
|
|
2019-06-17 01:10:50 +00:00
|
|
|
while running.load(Ordering::SeqCst) {
|
2018-04-22 09:58:39 +00:00
|
|
|
input.dispatch_new_events().unwrap();
|
2017-06-02 13:26:50 +00:00
|
|
|
|
2018-12-10 08:18:00 +00:00
|
|
|
// drawing logic
|
|
|
|
{
|
|
|
|
use glium::Surface;
|
|
|
|
let mut frame = drawer.draw();
|
|
|
|
frame.clear(None, Some((0.8, 0.8, 0.9, 1.0)), false, Some(1.0), None);
|
|
|
|
|
|
|
|
// draw the windows
|
|
|
|
drawer.draw_windows(&mut frame, &*window_map.borrow(), compositor_token);
|
|
|
|
|
|
|
|
let (x, y) = *pointer_location.borrow();
|
|
|
|
// draw the dnd icon if any
|
|
|
|
{
|
|
|
|
let guard = dnd_icon.lock().unwrap();
|
|
|
|
if let Some(ref surface) = *guard {
|
2019-02-22 21:50:46 +00:00
|
|
|
if surface.as_ref().is_alive() {
|
2018-12-10 08:18:00 +00:00
|
|
|
drawer.draw_dnd_icon(&mut frame, surface, (x as i32, y as i32), compositor_token);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// draw the cursor as relevant
|
|
|
|
{
|
|
|
|
let mut guard = cursor_status.lock().unwrap();
|
|
|
|
// reset the cursor if the surface is no longer alive
|
|
|
|
let mut reset = false;
|
|
|
|
if let CursorImageStatus::Image(ref surface) = *guard {
|
2019-02-22 21:50:46 +00:00
|
|
|
reset = !surface.as_ref().is_alive();
|
2018-12-10 08:18:00 +00:00
|
|
|
}
|
|
|
|
if reset {
|
|
|
|
*guard = CursorImageStatus::Default;
|
|
|
|
}
|
|
|
|
// draw as relevant
|
|
|
|
if let CursorImageStatus::Image(ref surface) = *guard {
|
|
|
|
drawer.draw_cursor(&mut frame, surface, (x as i32, y as i32), compositor_token);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Err(err) = frame.finish() {
|
|
|
|
error!(log, "Error during rendering: {:?}", err);
|
|
|
|
}
|
|
|
|
}
|
2017-06-02 13:26:50 +00:00
|
|
|
|
2020-04-05 17:01:08 +00:00
|
|
|
let mut state = AnvilState::default();
|
|
|
|
|
2019-06-17 01:10:50 +00:00
|
|
|
if event_loop
|
2020-04-05 17:01:08 +00:00
|
|
|
.dispatch(Some(::std::time::Duration::from_millis(16)), &mut state)
|
2019-06-17 01:10:50 +00:00
|
|
|
.is_err()
|
|
|
|
{
|
|
|
|
running.store(false, Ordering::SeqCst);
|
|
|
|
} else {
|
2020-04-05 17:01:08 +00:00
|
|
|
if state.need_wayland_dispatch {
|
2020-04-15 07:28:22 +00:00
|
|
|
display
|
|
|
|
.dispatch(std::time::Duration::from_millis(0), &mut state)
|
|
|
|
.unwrap();
|
2020-04-05 17:01:08 +00:00
|
|
|
}
|
|
|
|
display.flush_clients(&mut state);
|
2019-06-17 01:10:50 +00:00
|
|
|
window_map.borrow_mut().refresh();
|
|
|
|
}
|
2017-06-02 13:26:50 +00:00
|
|
|
}
|
2019-06-17 01:10:50 +00:00
|
|
|
|
|
|
|
// Cleanup stuff
|
|
|
|
window_map.borrow_mut().clear();
|
|
|
|
|
|
|
|
Ok(())
|
2018-05-08 10:47:09 +00:00
|
|
|
}
|