2018-06-04 03:47:46 +03:00
|
|
|
// Copyright 2018 Google LLC, licensed under http://www.apache.org/licenses/LICENSE-2.0
|
2018-03-13 18:04:21 +03:00
|
|
|
|
|
|
|
use aabb_quadtree::geom::{Point, Rect};
|
2018-07-06 20:33:03 +03:00
|
|
|
use graphics::Transformed;
|
2018-07-09 22:30:59 +03:00
|
|
|
use piston::input::{
|
|
|
|
Button, Event, MouseButton, MouseCursorEvent, MouseScrollEvent, PressEvent, ReleaseEvent,
|
|
|
|
};
|
2018-03-13 18:04:21 +03:00
|
|
|
use piston::window::Size;
|
2018-06-23 00:47:04 +03:00
|
|
|
use text;
|
2018-07-09 22:30:59 +03:00
|
|
|
use GfxCtx;
|
2018-03-13 18:04:21 +03:00
|
|
|
|
|
|
|
const ZOOM_SPEED: f64 = 0.05;
|
2018-07-06 21:23:53 +03:00
|
|
|
//const PAN_SPEED: f64 = 10.0;
|
2018-03-13 18:04:21 +03:00
|
|
|
|
|
|
|
pub struct Canvas {
|
|
|
|
pub cam_x: f64,
|
|
|
|
pub cam_y: f64,
|
|
|
|
pub cam_zoom: f64,
|
|
|
|
|
|
|
|
cursor_x: f64,
|
|
|
|
cursor_y: f64,
|
|
|
|
|
|
|
|
left_mouse_drag_from: Option<[f64; 2]>,
|
2018-07-06 20:02:01 +03:00
|
|
|
|
|
|
|
pub window_size: Size,
|
2018-03-13 18:04:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Canvas {
|
2018-07-06 20:02:01 +03:00
|
|
|
pub fn new(window_size: Size) -> Canvas {
|
2018-03-13 18:04:21 +03:00
|
|
|
Canvas {
|
|
|
|
cam_x: 0.0,
|
|
|
|
cam_y: 0.0,
|
|
|
|
cam_zoom: 1.0,
|
|
|
|
|
|
|
|
cursor_x: 0.0,
|
|
|
|
cursor_y: 0.0,
|
|
|
|
|
|
|
|
left_mouse_drag_from: None,
|
2018-07-06 20:02:01 +03:00
|
|
|
window_size,
|
2018-03-13 18:04:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_dragging(&self) -> bool {
|
|
|
|
self.left_mouse_drag_from.is_some()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn handle_event(&mut self, ev: &Event) {
|
|
|
|
if let Some(pos) = ev.mouse_cursor_args() {
|
|
|
|
self.cursor_x = pos[0];
|
|
|
|
self.cursor_y = pos[1];
|
|
|
|
|
|
|
|
if let Some(click) = self.left_mouse_drag_from {
|
|
|
|
self.cam_x += click[0] - pos[0];
|
|
|
|
self.cam_y += click[1] - pos[1];
|
|
|
|
self.left_mouse_drag_from = Some(pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if let Some(Button::Mouse(MouseButton::Left)) = ev.press_args() {
|
|
|
|
self.left_mouse_drag_from = Some([self.cursor_x, self.cursor_y]);
|
|
|
|
}
|
|
|
|
if let Some(Button::Mouse(MouseButton::Left)) = ev.release_args() {
|
|
|
|
self.left_mouse_drag_from = None;
|
|
|
|
}
|
2018-07-06 21:23:53 +03:00
|
|
|
// These aren't used much now, and they conflict with other plugins
|
|
|
|
/*if let Some(Button::Keyboard(key)) = ev.press_args() {
|
2018-03-13 18:04:21 +03:00
|
|
|
match key {
|
|
|
|
Key::Up => self.cam_y -= PAN_SPEED,
|
|
|
|
Key::Down => self.cam_y += PAN_SPEED,
|
|
|
|
Key::Left => self.cam_x -= PAN_SPEED,
|
|
|
|
Key::Right => self.cam_x += PAN_SPEED,
|
|
|
|
Key::Q => self.zoom_towards_mouse(-ZOOM_SPEED),
|
|
|
|
Key::W => self.zoom_towards_mouse(ZOOM_SPEED),
|
|
|
|
_ => {}
|
|
|
|
}
|
2018-07-06 21:23:53 +03:00
|
|
|
}*/
|
2018-03-13 18:04:21 +03:00
|
|
|
if let Some(scroll) = ev.mouse_scroll_args() {
|
|
|
|
self.zoom_towards_mouse(scroll[1] * ZOOM_SPEED);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-06 20:33:03 +03:00
|
|
|
pub fn start_drawing(&mut self, g: &mut GfxCtx, window_size: Size) {
|
2018-07-06 20:02:01 +03:00
|
|
|
self.window_size = window_size;
|
2018-07-06 20:33:03 +03:00
|
|
|
g.ctx = g.orig_ctx
|
|
|
|
.trans(-self.cam_x, -self.cam_y)
|
|
|
|
.zoom(self.cam_zoom)
|
2018-03-13 18:04:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn draw_mouse_tooltip(&self, g: &mut GfxCtx, lines: &[String]) {
|
2018-06-23 00:47:04 +03:00
|
|
|
let (width, height) = text::dims(g, lines);
|
2018-03-13 18:04:21 +03:00
|
|
|
let x1 = self.cursor_x - (width / 2.0);
|
|
|
|
let y1 = self.cursor_y - (height / 2.0);
|
2018-06-23 00:47:04 +03:00
|
|
|
text::draw_text_bubble(g, lines, x1, y1);
|
2018-03-13 18:04:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// at the bottom-left of the screen
|
|
|
|
pub fn draw_osd_notification(&self, g: &mut GfxCtx, lines: &[String]) {
|
|
|
|
if lines.is_empty() {
|
|
|
|
return;
|
|
|
|
}
|
2018-06-23 00:47:04 +03:00
|
|
|
let (_, height) = text::dims(g, lines);
|
2018-07-06 20:02:01 +03:00
|
|
|
let y1 = f64::from(self.window_size.height) - height;
|
2018-06-23 00:47:04 +03:00
|
|
|
text::draw_text_bubble(g, lines, 0.0, y1);
|
2018-03-13 18:04:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn draw_text_at(&self, g: &mut GfxCtx, lines: &[String], x: f64, y: f64) {
|
2018-06-23 00:47:04 +03:00
|
|
|
text::draw_text_bubble(g, lines, self.map_to_screen_x(x), self.map_to_screen_y(y));
|
2018-03-13 18:04:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
fn zoom_towards_mouse(&mut self, delta_zoom: f64) {
|
|
|
|
let old_zoom = self.cam_zoom;
|
|
|
|
self.cam_zoom += delta_zoom;
|
|
|
|
if self.cam_zoom <= ZOOM_SPEED {
|
|
|
|
self.cam_zoom = ZOOM_SPEED;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make screen_to_map_{x,y} of cursor_{x,y} still point to the same thing after zooming.
|
|
|
|
self.cam_x = ((self.cam_zoom / old_zoom) * (self.cursor_x + self.cam_x)) - self.cursor_x;
|
|
|
|
self.cam_y = ((self.cam_zoom / old_zoom) * (self.cursor_y + self.cam_y)) - self.cursor_y;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_cursor_in_map_space(&self) -> (f64, f64) {
|
|
|
|
(
|
|
|
|
self.screen_to_map_x(self.cursor_x),
|
|
|
|
self.screen_to_map_y(self.cursor_y),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2018-07-06 21:23:53 +03:00
|
|
|
pub fn screen_to_map_x(&self, x: f64) -> f64 {
|
2018-03-13 18:04:21 +03:00
|
|
|
(x + self.cam_x) / self.cam_zoom
|
|
|
|
}
|
2018-07-06 21:23:53 +03:00
|
|
|
pub fn screen_to_map_y(&self, y: f64) -> f64 {
|
2018-03-13 18:04:21 +03:00
|
|
|
(y + self.cam_y) / self.cam_zoom
|
|
|
|
}
|
|
|
|
|
2018-07-06 20:02:01 +03:00
|
|
|
pub fn center_on_map_pt(&mut self, x: f64, y: f64) {
|
|
|
|
self.cam_x = (x * self.cam_zoom) - (f64::from(self.window_size.width) / 2.0);
|
|
|
|
self.cam_y = (y * self.cam_zoom) - (f64::from(self.window_size.height) / 2.0);
|
2018-03-13 18:04:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
fn map_to_screen_x(&self, x: f64) -> f64 {
|
|
|
|
(x * self.cam_zoom) - self.cam_x
|
|
|
|
}
|
|
|
|
fn map_to_screen_y(&self, y: f64) -> f64 {
|
|
|
|
(y * self.cam_zoom) - self.cam_y
|
|
|
|
}
|
|
|
|
|
|
|
|
// little weird to return an aabb_quadtree type here. need standard geometry types
|
2018-07-06 20:02:01 +03:00
|
|
|
pub fn get_screen_bbox(&self) -> Rect {
|
2018-03-13 18:04:21 +03:00
|
|
|
Rect {
|
|
|
|
top_left: Point {
|
|
|
|
x: self.screen_to_map_x(0.0) as f32,
|
|
|
|
y: self.screen_to_map_y(0.0) as f32,
|
|
|
|
},
|
|
|
|
bottom_right: Point {
|
2018-07-06 20:02:01 +03:00
|
|
|
x: self.screen_to_map_x(f64::from(self.window_size.width)) as f32,
|
|
|
|
y: self.screen_to_map_y(f64::from(self.window_size.height)) as f32,
|
2018-03-13 18:04:21 +03:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|