1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
use crate::font::OutlinePoint;
use crate::geometry::{Point, Transform, Transformation};
use crate::internal_iter::{
ExtendFromInternalIterator, InternalIterator, IntoInternalIterator,
};
use crate::path::PathCommand;
use std::iter::Cloned;
use std::slice::Iter;
#[derive(Clone, Debug, Default, PartialEq)]
pub struct Outline {
contour_ends: Vec<usize>,
points: Vec<OutlinePoint>,
}
impl Outline {
pub fn new() -> Outline {
Outline::default()
}
pub fn contours(&self) -> Contours {
Contours {
contour_start: 0,
contour_ends: self.contour_ends.iter().cloned(),
points: &self.points,
}
}
pub fn points(&self) -> &[OutlinePoint] {
&self.points
}
pub fn commands(&self) -> Commands {
Commands {
contours: self.contours(),
}
}
pub fn points_mut(&mut self) -> &mut [OutlinePoint] {
&mut self.points
}
pub fn begin_contour(&mut self) -> ContourBuilder {
ContourBuilder {
contour_ends: &mut self.contour_ends,
points: &mut self.points,
}
}
}
impl<'a> ExtendFromInternalIterator<Contour<'a>> for Outline {
fn extend_from_internal_iter<I>(&mut self, internal_iter: I)
where
I: IntoInternalIterator<Item = Contour<'a>>,
{
internal_iter
.into_internal_iter()
.for_each(&mut |other_contour| {
let mut contour = self.begin_contour();
contour.extend_from_internal_iter(other_contour.points().iter().cloned());
contour.end();
true
});
}
}
impl Transform for Outline {
fn transform<T>(mut self, t: &T) -> Outline
where
T: Transformation,
{
self.transform_mut(t);
self
}
fn transform_mut<T>(&mut self, t: &T)
where
T: Transformation,
{
for point in self.points_mut() {
point.transform_mut(t);
}
}
}
#[derive(Clone, Debug)]
pub struct Contours<'a> {
contour_start: usize,
contour_ends: Cloned<Iter<'a, usize>>,
points: &'a [OutlinePoint],
}
impl<'a> Iterator for Contours<'a> {
type Item = Contour<'a>;
fn next(&mut self) -> Option<Contour<'a>> {
self.contour_ends.next().map(|contour_end| {
let contour_start = self.contour_start;
self.contour_start = contour_end;
Contour {
points: &self.points[contour_start..contour_end],
}
})
}
}
#[derive(Clone, Copy, Debug)]
pub struct Contour<'a> {
points: &'a [OutlinePoint],
}
impl<'a> Contour<'a> {
pub fn points(&self) -> &'a [OutlinePoint] {
&self.points
}
}
#[derive(Clone, Debug)]
pub struct Commands<'a> {
contours: Contours<'a>,
}
impl<'a> InternalIterator for Commands<'a> {
type Item = PathCommand;
fn for_each<F>(self, f: &mut F) -> bool
where
F: FnMut(PathCommand) -> bool,
{
for contour in self.contours {
let mut first_off_curve_point: Option<Point> = None;
let mut first_on_curve_point: Option<Point> = None;
let mut last_off_curve_point: Option<Point> = None;
for point in contour.points() {
if first_on_curve_point.is_none() {
if point.is_on_curve {
if !f(PathCommand::MoveTo(point.point)) {
return false;
}
first_on_curve_point = Some(point.point);
} else {
if let Some(first_off_curve_point) = first_off_curve_point {
let midpoint = first_off_curve_point.lerp(point.point, 0.5);
if !f(PathCommand::MoveTo(midpoint)) {
return false;
}
first_on_curve_point = Some(midpoint);
last_off_curve_point = Some(point.point);
} else {
first_off_curve_point = Some(point.point);
}
}
} else {
match (last_off_curve_point, point.is_on_curve) {
(None, false) => {
last_off_curve_point = Some(point.point);
}
(None, true) => {
if !f(PathCommand::LineTo(point.point)) {
return false;
}
}
(Some(last_point), false) => {
if !f(PathCommand::QuadraticTo(
last_point,
last_point.lerp(point.point, 0.5),
)) {
return false;
}
last_off_curve_point = Some(point.point);
}
(Some(last_point), true) => {
if !f(PathCommand::QuadraticTo(last_point, point.point)) {
return false;
}
last_off_curve_point = None;
}
}
}
}
if let Some(first_on_curve_point) = first_on_curve_point {
match (last_off_curve_point, first_off_curve_point) {
(None, None) => {
if !f(PathCommand::LineTo(first_on_curve_point)) {
return false;
}
}
(None, Some(first_off_curve_point)) => {
if !f(PathCommand::QuadraticTo(
first_off_curve_point,
first_on_curve_point,
)) {
return false;
}
}
(Some(last_point), None) => {
if !f(PathCommand::QuadraticTo(last_point, first_on_curve_point)) {
return false;
}
}
(Some(last_point), Some(first_off_curve_point)) => {
let midpoint = last_point.lerp(first_off_curve_point, 0.5);
if !f(PathCommand::QuadraticTo(last_point, midpoint)) {
return false;
}
if !f(PathCommand::QuadraticTo(
first_off_curve_point,
first_on_curve_point,
)) {
return false;
}
}
}
if !f(PathCommand::Close) {
return false;
}
}
}
true
}
}
#[derive(Debug)]
pub struct ContourBuilder<'a> {
contour_ends: &'a mut Vec<usize>,
points: &'a mut Vec<OutlinePoint>,
}
impl<'a> ContourBuilder<'a> {
pub fn end(self) {}
pub fn push(&mut self, point: OutlinePoint) {
self.points.push(point);
}
}
impl<'a> Drop for ContourBuilder<'a> {
fn drop(&mut self) {
if self.points.len() != self.contour_ends.last().cloned().unwrap_or(0) {
self.contour_ends.push(self.points.len());
}
}
}
impl<'a> ExtendFromInternalIterator<OutlinePoint> for ContourBuilder<'a> {
fn extend_from_internal_iter<I>(&mut self, internal_iter: I)
where
I: IntoInternalIterator<Item = OutlinePoint>,
{
internal_iter.into_internal_iter().for_each(&mut |point| {
self.push(point);
true
});
}
}