Switch to swash

Use swash instead of ttf-parser.

We can definitely do higher-level use of the swash crate, but this
leaves the integration pretty much as-is.
This commit is contained in:
Raph Levien 2021-08-18 12:04:43 -07:00
parent 660d7b8e91
commit 9cab8b8131
4 changed files with 114 additions and 80 deletions

34
Cargo.lock generated
View file

@ -1,5 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "ab_glyph_rasterizer"
version = "0.1.4"
@ -795,7 +797,7 @@ version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f923fb806c46266c02ab4a5b239735c144bdeda724a50ed058e5226f594cde3"
dependencies = [
"ttf-parser 0.6.2",
"ttf-parser",
]
[[package]]
@ -855,7 +857,7 @@ dependencies = [
"rand",
"raw-window-handle",
"roxmltree",
"ttf-parser 0.12.0",
"swash",
"winit",
]
@ -1102,6 +1104,16 @@ version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
[[package]]
name = "swash"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1bdb2004b76b5f5f3afe722d70b1aea160d2362cb7e40716a7106197ee7f82d"
dependencies = [
"yazi",
"zeno",
]
[[package]]
name = "syn"
version = "1.0.48"
@ -1157,12 +1169,6 @@ version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e5d7cd7ab3e47dda6e56542f4bbf3824c15234958c6e1bd6aaa347e93499fdc"
[[package]]
name = "ttf-parser"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85e00391c1f3d171490a3f8bd79999b0002ae38d3da0d6a3a306c754b053d71b"
[[package]]
name = "unic-bidi"
version = "0.9.0"
@ -1459,3 +1465,15 @@ name = "xmlparser"
version = "0.13.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "114ba2b24d2167ef6d67d7d04c8cc86522b87f490025f39f0303b7db5bf5e3d8"
[[package]]
name = "yazi"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c03b3e19c937b5b9bd8e52b1c88f30cce5c0d33d676cf174866175bb794ff658"
[[package]]
name = "zeno"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c110ba09c9b3a43edd4803d570df0da2414fed6e822e22b976a4e3ef50860701"

View file

@ -32,7 +32,7 @@ rand = "0.7.3"
roxmltree = "0.13"
winit = "0.23"
clap = "2.33"
ttf-parser = "0.12"
swash = "0.1.4"
[target.'cfg(target_os = "android")'.dependencies]
ndk = "0.3"

View file

@ -100,8 +100,7 @@ impl GfxState {
) -> Result<GfxState, Error> {
unsafe {
let device = instance.device(surface)?;
let mut swapchain =
instance.swapchain(width, height, &device, surface.unwrap())?;
let mut swapchain = instance.swapchain(width, height, &device, surface.unwrap())?;
let session = Session::new(device);
let mut current_frame = 0;
let present_semaphores = (0..NUM_FRAMES)

View file

@ -1,6 +1,8 @@
use std::ops::RangeBounds;
use ttf_parser::{Face, GlyphId, OutlineBuilder};
use swash::scale::ScaleContext;
use swash::zeno::{Vector, Verb};
use swash::{FontRef, GlyphId};
use piet::kurbo::{Point, Rect, Size};
use piet::{
@ -18,7 +20,9 @@ const FONT_DATA: &[u8] = include_bytes!("../third-party/Roboto-Regular.ttf");
#[derive(Clone)]
pub struct Font {
face: Face<'static>,
// Storing the font_ref is ok for static font data, but the better way to do
// this is to store the CacheKey.
font_ref: FontRef<'static>,
}
#[derive(Clone)]
@ -48,8 +52,6 @@ struct Glyph {
#[derive(Default)]
pub struct PathEncoder {
start_pt: [f32; 2],
cur_pt: [f32; 2],
elements: Vec<Element>,
}
@ -112,14 +114,79 @@ impl TextLayout for PietGpuTextLayout {
impl Font {
pub fn new() -> Font {
let face = Face::from_slice(FONT_DATA, 0).expect("error parsing font");
Font { face }
let font_ref = FontRef::from_index(FONT_DATA, 0).expect("error parsing font");
Font { font_ref }
}
fn make_path(&self, glyph_id: GlyphId) -> PathEncoder {
/*
let mut encoder = PathEncoder::default();
self.face.outline_glyph(glyph_id, &mut encoder);
encoder
*/
// Should the scale context be in the font? In the RenderCtx?
let mut scale_context = ScaleContext::new();
let mut scaler = scale_context.builder(self.font_ref).size(2048.).build();
let mut encoder = PathEncoder::default();
if let Some(outline) = scaler.scale_outline(glyph_id) {
let verbs = outline.verbs();
let points = outline.points();
let elements = &mut encoder.elements;
let mut i = 0;
let mut start_pt = [0.0f32; 2];
let mut last_pt = [0.0f32; 2];
for verb in verbs {
match verb {
Verb::MoveTo => {
start_pt = convert_swash_point(points[i]);
last_pt = start_pt;
i += 1;
}
Verb::LineTo => {
let p1 = convert_swash_point(points[i]);
elements.push(Element::Line(LineSeg {
p0: last_pt,
p1,
}));
last_pt = p1;
i += 1;
}
Verb::QuadTo => {
let p1 = convert_swash_point(points[i]);
let p2 = convert_swash_point(points[i + 1]);
elements.push(Element::Quad(QuadSeg {
p0: last_pt,
p1,
p2,
}));
last_pt = p2;
i += 2;
}
Verb::CurveTo => {
let p1 = convert_swash_point(points[i]);
let p2 = convert_swash_point(points[i + 1]);
let p3 = convert_swash_point(points[i + 2]);
elements.push(Element::Cubic(CubicSeg {
p0: last_pt,
p1,
p2,
p3,
}));
last_pt = p3;
i += 3;
}
Verb::Close => {
if start_pt != last_pt {
elements.push(Element::Line(LineSeg {
p0: last_pt,
p1: start_pt,
}));
}
}
}
}
}
encoder
}
}
@ -129,24 +196,23 @@ impl PietGpuTextLayout {
let mut x = 0.0;
let y = 0.0;
for c in text.chars() {
if let Some(glyph_id) = font.face.glyph_index(c) {
let glyph = Glyph { glyph_id, x, y };
glyphs.push(glyph);
if let Some(adv) = font.face.glyph_hor_advance(glyph_id) {
x += adv as f32;
}
}
let glyph_id = font.font_ref.charmap().map(c);
let glyph = Glyph { glyph_id, x, y };
glyphs.push(glyph);
let adv = font.font_ref.glyph_metrics(&[]).advance_width(glyph_id);
x += adv;
}
PietGpuTextLayout {
glyphs,
font: font.clone(),
size: size,
size,
}
}
pub(crate) fn draw_text(&self, ctx: &mut PietGpuRenderContext, pos: Point) {
const DEFAULT_UPEM: u16 = 1024;
let scale = self.size as f32 / self.font.face.units_per_em().unwrap_or(DEFAULT_UPEM) as f32;
// Should we use ppem from font, or let swash scale?
const DEFAULT_UPEM: u16 = 2048;
let scale = self.size as f32 / DEFAULT_UPEM as f32;
let mut inv_transform = None;
// TODO: handle y offsets also
let mut last_x = 0.0;
@ -237,61 +303,12 @@ impl TextLayoutBuilder for PietGpuTextLayoutBuilder {
}
}
impl OutlineBuilder for PathEncoder {
fn move_to(&mut self, x: f32, y: f32) {
self.start_pt = [x, y];
self.cur_pt = [x, y];
}
fn line_to(&mut self, x: f32, y: f32) {
let p1 = [x, y];
let seg = LineSeg {
p0: self.cur_pt,
p1: p1,
};
self.cur_pt = p1;
self.elements.push(Element::Line(seg));
}
fn quad_to(&mut self, x1: f32, y1: f32, x: f32, y: f32) {
let p1 = [x1, y1];
let p2 = [x, y];
let seg = QuadSeg {
p0: self.cur_pt,
p1: p1,
p2: p2,
};
self.cur_pt = p2;
self.elements.push(Element::Quad(seg));
}
fn curve_to(&mut self, x1: f32, y1: f32, x2: f32, y2: f32, x: f32, y: f32) {
let p1 = [x1, y1];
let p2 = [x2, y2];
let p3 = [x, y];
let seg = CubicSeg {
p0: self.cur_pt,
p1: p1,
p2: p2,
p3: p3,
};
self.cur_pt = p3;
self.elements.push(Element::Cubic(seg));
}
fn close(&mut self) {
if self.cur_pt != self.start_pt {
let seg = LineSeg {
p0: self.cur_pt,
p1: self.start_pt,
};
self.elements.push(Element::Line(seg));
}
}
}
impl PathEncoder {
pub(crate) fn elements(&self) -> &[Element] {
&self.elements
}
}
fn convert_swash_point(v: Vector) -> [f32; 2] {
[v.x, v.y]
}