2020-02-08 01:01:23 +03:00
|
|
|
use crate::text::Font;
|
2020-02-09 00:08:31 +03:00
|
|
|
use crate::{text, GeomBatch};
|
2020-02-09 03:27:45 +03:00
|
|
|
use geom::Bounds;
|
2020-02-09 00:25:48 +03:00
|
|
|
use lru::LruCache;
|
2020-02-07 09:30:51 +03:00
|
|
|
use std::cell::RefCell;
|
|
|
|
use std::collections::HashMap;
|
2020-02-07 22:51:41 +03:00
|
|
|
use usvg::Options;
|
2020-02-07 09:30:51 +03:00
|
|
|
|
|
|
|
// TODO We don't need refcell maybe? Can we take &mut Assets?
|
2019-11-29 09:41:08 +03:00
|
|
|
pub struct Assets {
|
|
|
|
pub default_line_height: f64,
|
2020-02-08 01:01:23 +03:00
|
|
|
pub default_font_size: usize,
|
2020-02-09 00:25:48 +03:00
|
|
|
text_cache: RefCell<LruCache<String, GeomBatch>>,
|
2020-02-08 01:01:23 +03:00
|
|
|
line_height_cache: RefCell<HashMap<(Font, usize), f64>>,
|
2020-02-09 03:27:45 +03:00
|
|
|
svg_cache: RefCell<HashMap<String, (GeomBatch, Bounds)>>,
|
2020-02-07 22:51:41 +03:00
|
|
|
pub text_opts: Options,
|
2019-11-29 09:41:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Assets {
|
2020-02-08 01:01:23 +03:00
|
|
|
pub fn new(default_font_size: usize, font_dir: String) -> Assets {
|
2019-11-29 09:41:08 +03:00
|
|
|
let mut a = Assets {
|
|
|
|
default_line_height: 0.0,
|
2020-02-08 01:01:23 +03:00
|
|
|
default_font_size,
|
2020-02-09 00:25:48 +03:00
|
|
|
text_cache: RefCell::new(LruCache::new(500)),
|
2020-02-08 01:01:23 +03:00
|
|
|
line_height_cache: RefCell::new(HashMap::new()),
|
2020-02-09 03:27:45 +03:00
|
|
|
svg_cache: RefCell::new(HashMap::new()),
|
2020-02-07 22:51:41 +03:00
|
|
|
text_opts: Options::default(),
|
2019-11-29 09:41:08 +03:00
|
|
|
};
|
2020-02-08 01:01:23 +03:00
|
|
|
a.default_line_height = a.line_height(Font::DejaVu, a.default_font_size);
|
2020-02-07 22:51:41 +03:00
|
|
|
a.text_opts.font_directories.push(font_dir);
|
2019-11-29 09:41:08 +03:00
|
|
|
a
|
|
|
|
}
|
|
|
|
|
2020-02-15 01:28:25 +03:00
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
2020-02-08 01:01:23 +03:00
|
|
|
pub fn line_height(&self, font: Font, font_size: usize) -> f64 {
|
|
|
|
let key = (font, font_size);
|
|
|
|
if let Some(height) = self.line_height_cache.borrow().get(&key) {
|
|
|
|
return *height;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO This is expensive and hacky!
|
|
|
|
let mut db = usvg::Database::new();
|
|
|
|
db.populate(&self.text_opts);
|
2020-02-09 00:08:31 +03:00
|
|
|
// This seems to be missing line_gap, and line_gap is 0, so manually adjust here.
|
|
|
|
let height = text::SCALE_LINE_HEIGHT
|
|
|
|
* db.load_font_idx(match font {
|
2020-02-08 01:01:23 +03:00
|
|
|
Font::DejaVu => 0,
|
|
|
|
Font::RobotoBold => 1,
|
|
|
|
Font::Roboto => 2,
|
|
|
|
})
|
|
|
|
.unwrap()
|
|
|
|
.height(font_size as f64);
|
|
|
|
|
|
|
|
self.line_height_cache.borrow_mut().insert(key, height);
|
|
|
|
height
|
2019-11-29 09:41:08 +03:00
|
|
|
}
|
2020-02-07 09:30:51 +03:00
|
|
|
|
2020-02-15 01:28:25 +03:00
|
|
|
// TODO No text in wasm yet
|
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
|
|
pub fn line_height(&self, font: Font, font_size: usize) -> f64 {
|
2020-02-15 03:15:44 +03:00
|
|
|
let key = (font, font_size);
|
|
|
|
if let Some(height) = self.line_height_cache.borrow().get(&key) {
|
|
|
|
return *height;
|
|
|
|
}
|
|
|
|
|
2020-02-15 01:28:25 +03:00
|
|
|
text::SCALE_LINE_HEIGHT * 30.0
|
|
|
|
}
|
|
|
|
|
2020-02-09 00:25:48 +03:00
|
|
|
pub fn get_cached_text(&self, key: &String) -> Option<GeomBatch> {
|
|
|
|
self.text_cache.borrow_mut().get(key).cloned()
|
2020-02-07 09:30:51 +03:00
|
|
|
}
|
|
|
|
pub fn cache_text(&self, key: String, geom: GeomBatch) {
|
2020-02-09 00:25:48 +03:00
|
|
|
self.text_cache.borrow_mut().put(key, geom);
|
2020-02-07 09:30:51 +03:00
|
|
|
}
|
2020-02-09 03:27:45 +03:00
|
|
|
|
|
|
|
pub fn get_cached_svg(&self, key: &str) -> Option<(GeomBatch, Bounds)> {
|
|
|
|
self.svg_cache.borrow().get(key).cloned()
|
|
|
|
}
|
|
|
|
pub fn cache_svg(&self, key: String, geom: GeomBatch, bounds: Bounds) {
|
|
|
|
self.svg_cache.borrow_mut().insert(key, (geom, bounds));
|
|
|
|
}
|
2019-11-29 09:41:08 +03:00
|
|
|
}
|