abstreet/ezgui/src/runner.rs

258 lines
8.9 KiB
Rust
Raw Normal View History

use crate::input::{ContextMenu, ModalMenuState};
2019-02-01 20:02:51 +03:00
use crate::{
2019-02-01 20:30:26 +03:00
text, widgets, Canvas, Event, EventCtx, GfxCtx, ModalMenu, Prerender, TopMenu, UserInput,
2019-02-01 20:02:51 +03:00
};
use glium::glutin;
use glium_glyph::glyph_brush::rusttype::Font;
2019-01-24 00:46:05 +03:00
use glium_glyph::glyph_brush::rusttype::Scale;
use glium_glyph::GlyphBrush;
use std::time::{Duration, Instant};
2019-02-01 20:02:51 +03:00
use std::{env, panic, process, thread};
2018-09-10 03:10:34 +03:00
pub trait GUI<T> {
// Called once
fn top_menu(&self, _canvas: &Canvas) -> Option<TopMenu> {
None
}
2018-12-17 23:33:44 +03:00
fn modal_menus() -> Vec<ModalMenu> {
Vec::new()
}
fn event(&mut self, ctx: EventCtx) -> (EventLoopMode, T);
// TODO Migrate all callers
2018-12-15 23:22:00 +03:00
fn draw(&self, g: &mut GfxCtx, data: &T);
// Return optional naming hint for screencap. TODO This API is getting gross.
fn new_draw(&self, g: &mut GfxCtx, data: &T, _screencap: bool) -> Option<String> {
self.draw(g, data);
None
}
// Will be called if event or draw panics.
fn dump_before_abort(&self, _canvas: &Canvas) {}
2018-12-17 22:32:52 +03:00
// Only before a normal exit, like window close
fn before_quit(&self, _canvas: &Canvas) {}
2018-09-10 03:10:34 +03:00
}
#[derive(Clone, Copy, PartialEq)]
2018-09-10 03:10:34 +03:00
pub enum EventLoopMode {
Animation,
InputOnly,
ScreenCaptureEverything { zoom: f64, max_x: f64, max_y: f64 },
2018-09-10 03:10:34 +03:00
}
2019-02-01 20:02:51 +03:00
pub(crate) struct State<T, G: GUI<T>> {
pub(crate) gui: G,
pub(crate) canvas: Canvas,
context_menu: ContextMenu,
top_menu: Option<TopMenu>,
modal_state: ModalMenuState,
2019-02-01 20:02:51 +03:00
pub(crate) last_data: Option<T>,
}
impl<T, G: GUI<T>> State<T, G> {
fn event(mut self, ev: Event, display: &glium::Display) -> (State<T, G>, EventLoopMode) {
// It's impossible / very unlikey we'll grab the cursor in map space before the very first
// start_drawing call.
let mut input = UserInput::new(
ev,
self.context_menu,
self.top_menu,
self.modal_state,
&mut self.canvas,
);
let mut gui = self.gui;
let mut canvas = self.canvas;
let (event_mode, data) = match panic::catch_unwind(panic::AssertUnwindSafe(|| {
gui.event(EventCtx {
input: &mut input,
canvas: &mut canvas,
prerender: &Prerender { display },
})
})) {
Ok(pair) => pair,
Err(err) => {
gui.dump_before_abort(&canvas);
panic::resume_unwind(err);
}
};
self.gui = gui;
self.canvas = canvas;
self.last_data = Some(data);
self.context_menu = input.context_menu.maybe_build(&self.canvas);
self.top_menu = input.top_menu;
self.modal_state = input.modal_state;
if let Some(action) = input.chosen_action {
panic!(
"\"{}\" chosen from the top or modal menu, but nothing consumed it",
action
);
}
let mut still_active = Vec::new();
for (mode, menu) in self.modal_state.active.into_iter() {
if input.set_mode_called.contains(&mode) {
still_active.push((mode, menu));
}
}
self.modal_state.active = still_active;
(self, event_mode)
}
2019-02-01 20:10:39 +03:00
// Returns naming hint.
pub(crate) fn draw(
&mut self,
display: &glium::Display,
program: &glium::Program,
screenshot: bool,
) -> Option<String> {
let mut target = display.draw();
let mut g = GfxCtx::new(&self.canvas, &display, &mut target, program);
2019-02-01 20:10:39 +03:00
let mut naming_hint: Option<String> = None;
// If the very first event is render, then just wait.
if let Some(ref data) = self.last_data {
self.canvas.start_drawing();
if let Err(err) = panic::catch_unwind(panic::AssertUnwindSafe(|| {
2019-02-01 20:10:39 +03:00
naming_hint = self.gui.new_draw(&mut g, data, screenshot);
})) {
self.gui.dump_before_abort(&self.canvas);
panic::resume_unwind(err);
}
2019-02-01 20:10:39 +03:00
if !screenshot {
// Always draw the menus last.
if let Some(ref menu) = self.top_menu {
menu.draw(&mut g);
}
for (_, ref menu) in &self.modal_state.active {
menu.draw(&mut g);
}
if let ContextMenu::Displaying(ref menu) = self.context_menu {
menu.draw(&mut g);
}
2019-02-01 20:10:39 +03:00
// Always draw text last
self.canvas
.glyphs
.borrow_mut()
.draw_queued(display, &mut target);
}
}
2019-01-14 21:24:11 +03:00
target.finish().unwrap();
2019-02-01 20:10:39 +03:00
naming_hint
2019-01-14 21:24:11 +03:00
}
}
pub fn run<T, G: GUI<T>, F: FnOnce(&mut Canvas, &Prerender) -> G>(
window_title: &str,
initial_width: f64,
initial_height: f64,
make_gui: F,
) {
// DPI is broken on my system; force the old behavior.
env::set_var("WINIT_HIDPI_FACTOR", "1.0");
let events_loop = glutin::EventsLoop::new();
let window = glutin::WindowBuilder::new()
.with_title(window_title)
.with_dimensions(glutin::dpi::LogicalSize::new(initial_width, initial_height));
// 2 looks bad, 4 looks fine
let context = glutin::ContextBuilder::new().with_multisampling(4);
let display = glium::Display::new(window, context, &events_loop).unwrap();
2019-01-24 09:27:32 +03:00
let program = glium::Program::new(
&display,
2019-01-24 09:27:32 +03:00
glium::program::ProgramCreationInput::SourceCode {
2019-02-01 20:30:26 +03:00
vertex_shader: include_str!("assets/vertex.glsl"),
2019-01-24 09:27:32 +03:00
tessellation_control_shader: None,
tessellation_evaluation_shader: None,
geometry_shader: None,
2019-02-01 20:30:26 +03:00
fragment_shader: include_str!("assets/fragment.glsl"),
2019-01-24 09:27:32 +03:00
transform_feedback_varyings: None,
// Without this, SRGB gets enabled and post-processes the color from the fragment
// shader.
outputs_srgb: true,
uses_point_size: false,
},
)
.unwrap();
2019-02-01 20:30:26 +03:00
let dejavu: &[u8] = include_bytes!("assets/DejaVuSans.ttf");
let fonts = vec![Font::from_bytes(dejavu).unwrap()];
2019-01-24 00:46:05 +03:00
let vmetrics = fonts[0].v_metrics(Scale::uniform(text::FONT_SIZE));
// TODO This works for this font, but could be more paranoid with abs()
let line_height = f64::from(vmetrics.ascent - vmetrics.descent + vmetrics.line_gap);
let glyphs = GlyphBrush::new(&display, fonts);
let mut canvas = Canvas::new(initial_width, initial_height, glyphs, line_height);
let gui = make_gui(&mut canvas, &Prerender { display: &display });
let state = State {
top_menu: gui.top_menu(&canvas),
canvas,
context_menu: ContextMenu::Inactive,
modal_state: ModalMenuState::new(G::modal_menus()),
last_data: None,
gui,
};
loop_forever(state, events_loop, display, program);
}
fn loop_forever<T, G: GUI<T>>(
mut state: State<T, G>,
mut events_loop: glutin::EventsLoop,
display: glium::Display,
program: glium::Program,
) {
let mut accumulator = Duration::new(0, 0);
let mut previous_clock = Instant::now();
2019-01-24 22:47:46 +03:00
let mut wait_for_events = false;
loop {
let mut new_events: Vec<glutin::WindowEvent> = Vec::new();
events_loop.poll_events(|event| {
if let glutin::Event::WindowEvent { event, .. } = event {
new_events.push(event);
}
});
2019-01-24 22:47:46 +03:00
let any_new_events = !new_events.is_empty();
for event in new_events {
if event == glutin::WindowEvent::CloseRequested {
state.gui.before_quit(&state.canvas);
process::exit(0);
}
if let Some(ev) = Event::from_glutin_event(event) {
let (new_state, mode) = state.event(ev, &display);
state = new_state;
wait_for_events = mode == EventLoopMode::InputOnly;
if let EventLoopMode::ScreenCaptureEverything { zoom, max_x, max_y } = mode {
2019-02-01 20:30:26 +03:00
state = widgets::screenshot_everything(
2019-02-01 20:02:51 +03:00
state, &display, &program, zoom, max_x, max_y,
);
}
}
}
2019-01-24 22:47:46 +03:00
if any_new_events || !wait_for_events {
2019-02-01 20:10:39 +03:00
state.draw(&display, &program, false);
2019-01-24 22:47:46 +03:00
}
2019-01-24 22:47:46 +03:00
if !wait_for_events {
let (new_state, mode) = state.event(Event::Update, &display);
2019-01-24 22:47:46 +03:00
state = new_state;
wait_for_events = mode == EventLoopMode::InputOnly;
}
2019-01-24 22:47:46 +03:00
// TODO This isn't right at all... sleep only if nothing happened.
if !any_new_events && wait_for_events {
let now = Instant::now();
accumulator += now - previous_clock;
previous_clock = now;
let fixed_time_stamp = Duration::new(0, 16_666_667);
while accumulator >= fixed_time_stamp {
accumulator -= fixed_time_stamp;
}
thread::sleep(fixed_time_stamp - accumulator);
2019-01-23 09:30:25 +03:00
}
}
}