use super::backend::{BackendCoord, DrawingBackend, DrawingErrorKind};
use crate::coord::{CoordTranslate, MeshLine, Ranged, RangedCoord, Shift};
use crate::element::{Drawable, PointCollection};
use crate::style::{Color, TextStyle};
use std::borrow::Borrow;
use std::cell::RefCell;
use std::error::Error;
use std::iter::{once, repeat};
use std::ops::Range;
use std::rc::Rc;
#[derive(Clone, Debug)]
struct Rect {
x0: i32,
y0: i32,
x1: i32,
y1: i32,
}
impl Rect {
fn split<'a, BPI: IntoIterator<Item = &'a i32> + 'a>(
&'a self,
break_points: BPI,
vertical: bool,
) -> impl Iterator<Item = Rect> + 'a {
let (mut x0, mut y0) = (self.x0, self.y0);
let (full_x, full_y) = (self.x1, self.y1);
return break_points
.into_iter()
.chain(once(if vertical { &self.y1 } else { &self.x1 }))
.map(move |&p| {
let x1 = if vertical { full_x } else { p };
let y1 = if vertical { p } else { full_y };
let ret = Rect { x0, y0, x1, y1 };
if vertical {
y0 = y1
} else {
x0 = x1;
}
return ret;
});
}
fn split_evenly<'a>(&'a self, (row, col): (usize, usize)) -> impl Iterator<Item = Rect> + 'a {
fn compute_evenly_split(from: i32, to: i32, n: usize, idx: usize) -> i32 {
let size = (to - from) as usize;
return from + idx as i32 * (size / n) as i32 + if size % n < idx { 1 } else { 0 };
}
return (0..row)
.into_iter()
.map(move |x| repeat(x).zip(0..col))
.flatten()
.map(move |(ri, ci)| {
return Self {
y0: compute_evenly_split(self.y0, self.y1, row, ri),
y1: compute_evenly_split(self.y0, self.y1, row, ri + 1),
x0: compute_evenly_split(self.x0, self.x1, col, ci),
x1: compute_evenly_split(self.x0, self.x1, col, ci + 1),
};
});
}
fn truncate(&self, p: (i32, i32)) -> (i32, i32) {
return (p.0.min(self.x1).max(self.x0), p.1.min(self.y1).max(self.y0));
}
}
pub struct DrawingArea<DB: DrawingBackend, CT: CoordTranslate> {
backend: Rc<RefCell<DB>>,
rect: Rect,
coord: CT,
}
impl<DB: DrawingBackend, CT: CoordTranslate + Clone> Clone for DrawingArea<DB, CT> {
fn clone(&self) -> Self {
return Self {
backend: self.copy_backend_ref(),
rect: self.rect.clone(),
coord: self.coord.clone(),
};
}
}
#[derive(Debug)]
pub enum DrawingAreaErrorKind<E: Error> {
BackendError(DrawingErrorKind<E>),
SharingError,
LayoutError,
}
impl<E: Error> std::fmt::Display for DrawingAreaErrorKind<E> {
fn fmt(&self, fmt: &mut std::fmt::Formatter) -> Result<(), std::fmt::Error> {
return match self {
DrawingAreaErrorKind::BackendError(e) => write!(fmt, "backend error: {}", e),
DrawingAreaErrorKind::SharingError => {
write!(fmt, "Mulitple backend operation in progress")
}
DrawingAreaErrorKind::LayoutError => write!(fmt, "Bad layout"),
};
}
}
impl<E: Error> Error for DrawingAreaErrorKind<E> {}
#[allow(type_alias_bounds)]
type DrawingAreaError<T: DrawingBackend> = DrawingAreaErrorKind<T::ErrorType>;
impl<DB: DrawingBackend> From<DB> for DrawingArea<DB, Shift> {
fn from(backend: DB) -> Self {
let (x1, y1) = backend.get_size();
return Self {
rect: Rect {
x0: 0,
y0: 0,
x1: x1 as i32,
y1: y1 as i32,
},
backend: Rc::new(RefCell::new(backend)),
coord: Shift((0, 0)),
};
}
}
impl<DB: DrawingBackend, X: Ranged, Y: Ranged> DrawingArea<DB, RangedCoord<X, Y>> {
pub fn draw_mesh<DrawFunc>(
&self,
mut draw_func: DrawFunc,
y_count_max: usize,
x_count_max: usize,
) -> Result<(), DrawingAreaErrorKind<DB::ErrorType>>
where
DrawFunc: FnMut(&mut DB, MeshLine<X, Y>) -> Result<(), DrawingErrorKind<DB::ErrorType>>,
{
return self.backend_ops(move |b| {
return self.coord.draw_mesh(y_count_max, x_count_max, |line| {
return draw_func(b, line);
});
});
}
pub fn get_x_range(&self) -> Range<X::ValueType> {
return self.coord.get_x_range();
}
pub fn get_y_range(&self) -> Range<Y::ValueType> {
return self.coord.get_y_range();
}
}
impl<DB: DrawingBackend, CT: CoordTranslate> DrawingArea<DB, CT> {
pub fn get_base_pixel(&self) -> BackendCoord {
return (self.rect.x0, self.rect.y0);
}
pub fn strip_coord_spec(&self) -> DrawingArea<DB, Shift> {
return DrawingArea {
rect: self.rect.clone(),
backend: self.copy_backend_ref(),
coord: Shift((self.rect.x0, self.rect.y0)),
};
}
pub fn dim_in_pixel(&self) -> (u32, u32) {
return (
(self.rect.x1 - self.rect.x0) as u32,
(self.rect.y1 - self.rect.y0) as u32,
);
}
pub fn get_pixel_range(&self) -> (Range<i32>, Range<i32>) {
return (self.rect.x0..self.rect.x1, self.rect.y0..self.rect.y1);
}
fn copy_backend_ref(&self) -> Rc<RefCell<DB>> {
return self.backend.clone();
}
fn backend_ops<R, O: FnOnce(&mut DB) -> Result<R, DrawingErrorKind<DB::ErrorType>>>(
&self,
ops: O,
) -> Result<R, DrawingAreaError<DB>> {
if let Ok(mut db) = self.backend.try_borrow_mut() {
return ops(&mut db).map_err(|what| DrawingAreaErrorKind::BackendError(what));
} else {
return Err(DrawingAreaErrorKind::SharingError);
}
}
pub fn fill<ColorType: Color>(&self, color: &ColorType) -> Result<(), DrawingAreaError<DB>> {
return self.backend_ops(|backend| {
backend.draw_rect(
(self.rect.x0, self.rect.y0),
(self.rect.x1, self.rect.y1),
color,
true,
)
});
}
pub fn open(&self) -> Result<(), DrawingAreaError<DB>> {
return self.backend_ops(|b| b.open());
}
pub fn close(&self) -> Result<(), DrawingAreaError<DB>> {
return self.backend_ops(|b| {
return b.close();
});
}
pub fn draw<'a, E>(&self, element: &'a E) -> Result<(), DrawingAreaError<DB>>
where
&'a E: PointCollection<'a, CT::From>,
E: Drawable,
{
let backend_coords = element.point_iter().into_iter().map(|p| {
let b = p.borrow();
return self.rect.truncate(self.coord.translate(b));
});
return self.backend_ops(move |b| element.draw(backend_coords, b));
}
pub fn map_coordinate(&self, coord: &CT::From) -> BackendCoord {
return self.coord.translate(coord);
}
}
impl<DB: DrawingBackend> DrawingArea<DB, Shift> {
pub fn shrink(
mut self,
left_upper: (u32, u32),
dimension: (u32, u32),
) -> DrawingArea<DB, Shift> {
self.rect.x0 = self.rect.x1.min(self.rect.x0 + left_upper.0 as i32);
self.rect.y0 = self.rect.y1.min(self.rect.y0 + left_upper.1 as i32);
self.rect.x1 = self.rect.x0.max(self.rect.x0 + dimension.0 as i32);
self.rect.y1 = self.rect.y0.max(self.rect.y0 + dimension.1 as i32);
self.coord = Shift((self.rect.x0, self.rect.y0));
return self;
}
pub fn apply_coord_spec<CT: CoordTranslate>(&self, coord_spec: CT) -> DrawingArea<DB, CT> {
return DrawingArea {
rect: self.rect.clone(),
backend: self.copy_backend_ref(),
coord: coord_spec,
};
}
pub fn margin(&self, top: i32, bottom: i32, left: i32, right: i32) -> DrawingArea<DB, Shift> {
return DrawingArea {
rect: Rect {
x0: self.rect.x0 + left,
y0: self.rect.y0 + top,
x1: self.rect.x1 - right,
y1: self.rect.y1 - bottom,
},
backend: self.copy_backend_ref(),
coord: Shift((self.rect.x0 + left, self.rect.y0 + top)),
};
}
pub fn split_vertically(&self, y: i32) -> (Self, Self) {
let split_point = [y + self.rect.y0];
let mut ret = self.rect.split(split_point.iter(), true).map(|rect| {
return Self {
rect: rect.clone(),
backend: self.copy_backend_ref(),
coord: Shift((rect.x0, rect.y0)),
};
});
return (ret.next().unwrap(), ret.next().unwrap());
}
pub fn split_horizentally(&self, x: i32) -> (Self, Self) {
let split_point = [x + self.rect.x0];
let mut ret = self.rect.split(split_point.iter(), false).map(|rect| {
return Self {
rect: rect.clone(),
backend: self.copy_backend_ref(),
coord: Shift((rect.x0, rect.y0)),
};
});
return (ret.next().unwrap(), ret.next().unwrap());
}
pub fn split_evenly(&self, (row, col): (usize, usize)) -> Vec<Self> {
return self
.rect
.split_evenly((row, col))
.map(|rect| {
return Self {
rect: rect.clone(),
backend: self.copy_backend_ref(),
coord: Shift((rect.x0, rect.y0)),
};
})
.collect();
}
pub fn titled<'a, S: Into<TextStyle<'a>>>(
&self,
text: &str,
style: S,
) -> Result<Self, DrawingAreaError<DB>> {
let style = style.into();
let (text_w, text_h) = match style.font.box_size(text) {
Ok(what) => what,
Err(what) => {
return Err(DrawingAreaErrorKind::BackendError(
DrawingErrorKind::FontError(what),
));
}
};
let padding = if self.rect.x1 - self.rect.x0 > text_w as i32 {
(self.rect.x1 - self.rect.x0 - text_w as i32) / 2
} else {
0
};
self.backend_ops(|b| {
b.draw_text(
text,
style.font,
(self.rect.x0 + padding, self.rect.y0 + 5),
&Box::new(style.color),
)
})?;
return Ok(Self {
rect: Rect {
x0: self.rect.x0,
y0: self.rect.y0 + 10 + text_h as i32,
x1: self.rect.x1,
y1: self.rect.y1,
},
backend: self.copy_backend_ref(),
coord: Shift((self.rect.x0, self.rect.y0 + 10 + text_h as i32)),
});
}
pub fn draw_text(
&self,
text: &str,
style: &TextStyle,
pos: BackendCoord,
) -> Result<(), DrawingAreaError<DB>> {
return self.backend_ops(|b| {
b.draw_text(
text,
style.font,
(pos.0 + self.rect.x0, pos.1 + self.rect.y0),
&Box::new(style.color),
)
});
}
}