2025-03-03 12:18:52 +00:00
|
|
|
use std::{fs::File, io::{BufWriter, Write}};
|
|
|
|
|
2025-03-03 22:48:25 +00:00
|
|
|
use crate::font::{GlyphHeader, GlyphPoint, SplineElement};
|
2025-03-03 12:18:52 +00:00
|
|
|
|
|
|
|
use super::Visitor;
|
|
|
|
|
2025-03-04 11:43:51 +00:00
|
|
|
pub struct SvgWriter<'a, W: Sized + Write> {
|
2025-03-03 12:18:52 +00:00
|
|
|
first_point: bool,
|
2025-03-03 22:48:25 +00:00
|
|
|
|
2025-03-04 11:43:51 +00:00
|
|
|
writer: &'a mut W,
|
2025-03-03 22:48:25 +00:00
|
|
|
points: Vec<(i32, i32)>,
|
|
|
|
control_points: Vec<(i32, i32)>,
|
|
|
|
virtual_points: Vec<(i32, i32)>
|
2025-03-03 12:18:52 +00:00
|
|
|
}
|
|
|
|
|
2025-03-04 11:43:51 +00:00
|
|
|
impl<'a, W: Sized + Write> SvgWriter<'a, W> {
|
|
|
|
pub fn new(out: &'a mut W) -> Self {
|
2025-03-03 12:18:52 +00:00
|
|
|
SvgWriter {
|
|
|
|
first_point: true,
|
2025-03-03 22:48:25 +00:00
|
|
|
|
2025-03-04 11:43:51 +00:00
|
|
|
writer: out,
|
2025-03-03 22:48:25 +00:00
|
|
|
points: vec![],
|
|
|
|
control_points: vec![],
|
|
|
|
virtual_points: vec![]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-03-04 11:43:51 +00:00
|
|
|
impl<'a, W: Sized + Write> SvgWriter<'a, W> {
|
2025-03-03 22:48:25 +00:00
|
|
|
fn handle_start_point(&mut self, point: &GlyphPoint) {
|
|
|
|
if self.first_point {
|
|
|
|
write!(self.writer, "M{} {} ", point.x, -point.y);
|
|
|
|
self.first_point = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn handle_end_point(&mut self, point: &GlyphPoint) {
|
|
|
|
if point.is_endpoint {
|
|
|
|
self.first_point = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-03-04 11:43:51 +00:00
|
|
|
fn write_points(&mut self) {
|
|
|
|
for (x, y) in &self.points {
|
|
|
|
write!(self.writer, "<circle cx=\"{x}\" cy=\"{y}\" r=\"10\" fill=\"red\" />");
|
|
|
|
}
|
|
|
|
|
|
|
|
for (x, y) in &self.control_points {
|
|
|
|
write!(self.writer, "<circle cx=\"{x}\" cy=\"{y}\" r=\"10\" fill=\"blue\" />");
|
|
|
|
}
|
|
|
|
|
|
|
|
for (x, y) in &self.virtual_points {
|
|
|
|
write!(self.writer, "<circle cx=\"{x}\" cy=\"{y}\" r=\"10\" fill=\"green\" />");
|
2025-03-03 12:18:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-03-04 11:43:51 +00:00
|
|
|
impl<'a, W: Sized + Write> Visitor for SvgWriter<'a, W> {
|
2025-03-03 12:18:52 +00:00
|
|
|
fn write_prefix(&mut self, header: &GlyphHeader) {
|
|
|
|
write!(
|
|
|
|
self.writer,
|
|
|
|
"<svg width=\"1000\" height=\"1000\" viewBox=\"{} {} {} {}\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"",
|
2025-03-03 16:21:55 +00:00
|
|
|
header.xmin, -header.ymax,
|
2025-03-03 12:18:52 +00:00
|
|
|
header.xmax - header.xmin,
|
|
|
|
header.ymax - header.ymin
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2025-03-03 22:48:25 +00:00
|
|
|
fn write_point(&mut self, point: &SplineElement) {
|
|
|
|
match point {
|
|
|
|
SplineElement::Line(start, end) => {
|
|
|
|
self.handle_start_point(start);
|
|
|
|
write!(self.writer, "L{} {} ", end.x, -end.y);
|
2025-03-03 12:18:52 +00:00
|
|
|
|
2025-03-03 22:48:25 +00:00
|
|
|
self.points.push((start.x, -start.y));
|
|
|
|
self.handle_end_point(start);
|
|
|
|
},
|
2025-03-03 16:21:55 +00:00
|
|
|
|
2025-03-03 22:48:25 +00:00
|
|
|
SplineElement::Bezier(start, control, end) => {
|
|
|
|
self.handle_start_point(start);
|
|
|
|
write!(self.writer, "Q{} {} {} {} ", control.x, -control.y, end.x, -end.y);
|
2025-03-03 16:21:55 +00:00
|
|
|
|
2025-03-03 22:48:25 +00:00
|
|
|
if start.is_virtual {
|
|
|
|
self.virtual_points.push((start.x, -start.y));
|
2025-03-03 16:21:55 +00:00
|
|
|
} else {
|
2025-03-03 22:48:25 +00:00
|
|
|
self.points.push((start.x, -start.y));
|
2025-03-03 16:21:55 +00:00
|
|
|
}
|
|
|
|
|
2025-03-03 22:48:25 +00:00
|
|
|
self.control_points.push((control.x, -control.y));
|
|
|
|
self.handle_end_point(start);
|
|
|
|
}
|
2025-03-03 16:21:55 +00:00
|
|
|
}
|
2025-03-03 12:18:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn write_suffix(&mut self) {
|
|
|
|
write!(
|
|
|
|
self.writer,
|
2025-03-03 22:48:25 +00:00
|
|
|
"\" style=\"fill:none; stroke:black; stroke-width:3;\" />"
|
2025-03-03 12:18:52 +00:00
|
|
|
);
|
2025-03-03 22:48:25 +00:00
|
|
|
|
2025-03-04 11:43:51 +00:00
|
|
|
self.write_points();
|
2025-03-03 22:48:25 +00:00
|
|
|
|
|
|
|
write!(self.writer, "</svg>");
|
2025-03-03 12:18:52 +00:00
|
|
|
}
|
|
|
|
}
|