1 /*
2 * Copyright 2006 The Android Open Source Project
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #include "SkDashPathEffect.h"
9
10 #include "SkDashPathPriv.h"
11 #include "SkReadBuffer.h"
12 #include "SkWriteBuffer.h"
13 #include "SkStrokeRec.h"
14
SkDashPathEffect(const SkScalar intervals[],int count,SkScalar phase)15 SkDashPathEffect::SkDashPathEffect(const SkScalar intervals[], int count, SkScalar phase)
16 : fPhase(0)
17 , fInitialDashLength(-1)
18 , fInitialDashIndex(0)
19 , fIntervalLength(0) {
20 SkASSERT(intervals);
21 SkASSERT(count > 1 && SkIsAlign2(count));
22
23 fIntervals = (SkScalar*)sk_malloc_throw(sizeof(SkScalar) * count);
24 fCount = count;
25 for (int i = 0; i < count; i++) {
26 fIntervals[i] = intervals[i];
27 }
28
29 // set the internal data members
30 SkDashPath::CalcDashParameters(phase, fIntervals, fCount,
31 &fInitialDashLength, &fInitialDashIndex, &fIntervalLength, &fPhase);
32 }
33
~SkDashPathEffect()34 SkDashPathEffect::~SkDashPathEffect() {
35 sk_free(fIntervals);
36 }
37
filterPath(SkPath * dst,const SkPath & src,SkStrokeRec * rec,const SkRect * cullRect) const38 bool SkDashPathEffect::filterPath(SkPath* dst, const SkPath& src,
39 SkStrokeRec* rec, const SkRect* cullRect) const {
40 return SkDashPath::InternalFilter(dst, src, rec, cullRect, fIntervals, fCount,
41 fInitialDashLength, fInitialDashIndex, fIntervalLength);
42 }
43
outset_for_stroke(SkRect * rect,const SkStrokeRec & rec)44 static void outset_for_stroke(SkRect* rect, const SkStrokeRec& rec) {
45 SkScalar radius = SkScalarHalf(rec.getWidth());
46 if (0 == radius) {
47 radius = SK_Scalar1; // hairlines
48 }
49 if (SkPaint::kMiter_Join == rec.getJoin()) {
50 radius *= rec.getMiter();
51 }
52 rect->outset(radius, radius);
53 }
54
55 // Attempt to trim the line to minimally cover the cull rect (currently
56 // only works for horizontal and vertical lines).
57 // Return true if processing should continue; false otherwise.
cull_line(SkPoint * pts,const SkStrokeRec & rec,const SkMatrix & ctm,const SkRect * cullRect,const SkScalar intervalLength)58 static bool cull_line(SkPoint* pts, const SkStrokeRec& rec,
59 const SkMatrix& ctm, const SkRect* cullRect,
60 const SkScalar intervalLength) {
61 if (nullptr == cullRect) {
62 SkASSERT(false); // Shouldn't ever occur in practice
63 return false;
64 }
65
66 SkScalar dx = pts[1].x() - pts[0].x();
67 SkScalar dy = pts[1].y() - pts[0].y();
68
69 if ((dx && dy) || (!dx && !dy)) {
70 return false;
71 }
72
73 SkRect bounds = *cullRect;
74 outset_for_stroke(&bounds, rec);
75
76 // cullRect is in device space while pts are in the local coordinate system
77 // defined by the ctm. We want our answer in the local coordinate system.
78
79 SkASSERT(ctm.rectStaysRect());
80 SkMatrix inv;
81 if (!ctm.invert(&inv)) {
82 return false;
83 }
84
85 inv.mapRect(&bounds);
86
87 if (dx) {
88 SkASSERT(dx && !dy);
89 SkScalar minX = pts[0].fX;
90 SkScalar maxX = pts[1].fX;
91
92 if (dx < 0) {
93 SkTSwap(minX, maxX);
94 }
95
96 SkASSERT(minX < maxX);
97 if (maxX <= bounds.fLeft || minX >= bounds.fRight) {
98 return false;
99 }
100
101 // Now we actually perform the chop, removing the excess to the left and
102 // right of the bounds (keeping our new line "in phase" with the dash,
103 // hence the (mod intervalLength).
104
105 if (minX < bounds.fLeft) {
106 minX = bounds.fLeft - SkScalarMod(bounds.fLeft - minX, intervalLength);
107 }
108 if (maxX > bounds.fRight) {
109 maxX = bounds.fRight + SkScalarMod(maxX - bounds.fRight, intervalLength);
110 }
111
112 SkASSERT(maxX > minX);
113 if (dx < 0) {
114 SkTSwap(minX, maxX);
115 }
116 pts[0].fX = minX;
117 pts[1].fX = maxX;
118 } else {
119 SkASSERT(dy && !dx);
120 SkScalar minY = pts[0].fY;
121 SkScalar maxY = pts[1].fY;
122
123 if (dy < 0) {
124 SkTSwap(minY, maxY);
125 }
126
127 SkASSERT(minY < maxY);
128 if (maxY <= bounds.fTop || minY >= bounds.fBottom) {
129 return false;
130 }
131
132 // Now we actually perform the chop, removing the excess to the top and
133 // bottom of the bounds (keeping our new line "in phase" with the dash,
134 // hence the (mod intervalLength).
135
136 if (minY < bounds.fTop) {
137 minY = bounds.fTop - SkScalarMod(bounds.fTop - minY, intervalLength);
138 }
139 if (maxY > bounds.fBottom) {
140 maxY = bounds.fBottom + SkScalarMod(maxY - bounds.fBottom, intervalLength);
141 }
142
143 SkASSERT(maxY > minY);
144 if (dy < 0) {
145 SkTSwap(minY, maxY);
146 }
147 pts[0].fY = minY;
148 pts[1].fY = maxY;
149 }
150
151 return true;
152 }
153
154 // Currently asPoints is more restrictive then it needs to be. In the future
155 // we need to:
156 // allow kRound_Cap capping (could allow rotations in the matrix with this)
157 // allow paths to be returned
asPoints(PointData * results,const SkPath & src,const SkStrokeRec & rec,const SkMatrix & matrix,const SkRect * cullRect) const158 bool SkDashPathEffect::asPoints(PointData* results,
159 const SkPath& src,
160 const SkStrokeRec& rec,
161 const SkMatrix& matrix,
162 const SkRect* cullRect) const {
163 // width < 0 -> fill && width == 0 -> hairline so requiring width > 0 rules both out
164 if (0 >= rec.getWidth()) {
165 return false;
166 }
167
168 // TODO: this next test could be eased up. We could allow any number of
169 // intervals as long as all the ons match and all the offs match.
170 // Additionally, they do not necessarily need to be integers.
171 // We cannot allow arbitrary intervals since we want the returned points
172 // to be uniformly sized.
173 if (fCount != 2 ||
174 !SkScalarNearlyEqual(fIntervals[0], fIntervals[1]) ||
175 !SkScalarIsInt(fIntervals[0]) ||
176 !SkScalarIsInt(fIntervals[1])) {
177 return false;
178 }
179
180 SkPoint pts[2];
181
182 if (!src.isLine(pts)) {
183 return false;
184 }
185
186 // TODO: this test could be eased up to allow circles
187 if (SkPaint::kButt_Cap != rec.getCap()) {
188 return false;
189 }
190
191 // TODO: this test could be eased up for circles. Rotations could be allowed.
192 if (!matrix.rectStaysRect()) {
193 return false;
194 }
195
196 // See if the line can be limited to something plausible.
197 if (!cull_line(pts, rec, matrix, cullRect, fIntervalLength)) {
198 return false;
199 }
200
201 SkScalar length = SkPoint::Distance(pts[1], pts[0]);
202
203 SkVector tangent = pts[1] - pts[0];
204 if (tangent.isZero()) {
205 return false;
206 }
207
208 tangent.scale(SkScalarInvert(length));
209
210 // TODO: make this test for horizontal & vertical lines more robust
211 bool isXAxis = true;
212 if (SkScalarNearlyEqual(SK_Scalar1, tangent.fX) ||
213 SkScalarNearlyEqual(-SK_Scalar1, tangent.fX)) {
214 results->fSize.set(SkScalarHalf(fIntervals[0]), SkScalarHalf(rec.getWidth()));
215 } else if (SkScalarNearlyEqual(SK_Scalar1, tangent.fY) ||
216 SkScalarNearlyEqual(-SK_Scalar1, tangent.fY)) {
217 results->fSize.set(SkScalarHalf(rec.getWidth()), SkScalarHalf(fIntervals[0]));
218 isXAxis = false;
219 } else if (SkPaint::kRound_Cap != rec.getCap()) {
220 // Angled lines don't have axis-aligned boxes.
221 return false;
222 }
223
224 if (results) {
225 results->fFlags = 0;
226 SkScalar clampedInitialDashLength = SkMinScalar(length, fInitialDashLength);
227
228 if (SkPaint::kRound_Cap == rec.getCap()) {
229 results->fFlags |= PointData::kCircles_PointFlag;
230 }
231
232 results->fNumPoints = 0;
233 SkScalar len2 = length;
234 if (clampedInitialDashLength > 0 || 0 == fInitialDashIndex) {
235 SkASSERT(len2 >= clampedInitialDashLength);
236 if (0 == fInitialDashIndex) {
237 if (clampedInitialDashLength > 0) {
238 if (clampedInitialDashLength >= fIntervals[0]) {
239 ++results->fNumPoints; // partial first dash
240 }
241 len2 -= clampedInitialDashLength;
242 }
243 len2 -= fIntervals[1]; // also skip first space
244 if (len2 < 0) {
245 len2 = 0;
246 }
247 } else {
248 len2 -= clampedInitialDashLength; // skip initial partial empty
249 }
250 }
251 // Too many midpoints can cause results->fNumPoints to overflow or
252 // otherwise cause the results->fPoints allocation below to OOM.
253 // Cap it to a sane value.
254 SkScalar numIntervals = len2 / fIntervalLength;
255 if (!SkScalarIsFinite(numIntervals) || numIntervals > SkDashPath::kMaxDashCount) {
256 return false;
257 }
258 int numMidPoints = SkScalarFloorToInt(numIntervals);
259 results->fNumPoints += numMidPoints;
260 len2 -= numMidPoints * fIntervalLength;
261 bool partialLast = false;
262 if (len2 > 0) {
263 if (len2 < fIntervals[0]) {
264 partialLast = true;
265 } else {
266 ++numMidPoints;
267 ++results->fNumPoints;
268 }
269 }
270
271 results->fPoints = new SkPoint[results->fNumPoints];
272
273 SkScalar distance = 0;
274 int curPt = 0;
275
276 if (clampedInitialDashLength > 0 || 0 == fInitialDashIndex) {
277 SkASSERT(clampedInitialDashLength <= length);
278
279 if (0 == fInitialDashIndex) {
280 if (clampedInitialDashLength > 0) {
281 // partial first block
282 SkASSERT(SkPaint::kRound_Cap != rec.getCap()); // can't handle partial circles
283 SkScalar x = pts[0].fX + tangent.fX * SkScalarHalf(clampedInitialDashLength);
284 SkScalar y = pts[0].fY + tangent.fY * SkScalarHalf(clampedInitialDashLength);
285 SkScalar halfWidth, halfHeight;
286 if (isXAxis) {
287 halfWidth = SkScalarHalf(clampedInitialDashLength);
288 halfHeight = SkScalarHalf(rec.getWidth());
289 } else {
290 halfWidth = SkScalarHalf(rec.getWidth());
291 halfHeight = SkScalarHalf(clampedInitialDashLength);
292 }
293 if (clampedInitialDashLength < fIntervals[0]) {
294 // This one will not be like the others
295 results->fFirst.addRect(x - halfWidth, y - halfHeight,
296 x + halfWidth, y + halfHeight);
297 } else {
298 SkASSERT(curPt < results->fNumPoints);
299 results->fPoints[curPt].set(x, y);
300 ++curPt;
301 }
302
303 distance += clampedInitialDashLength;
304 }
305
306 distance += fIntervals[1]; // skip over the next blank block too
307 } else {
308 distance += clampedInitialDashLength;
309 }
310 }
311
312 if (0 != numMidPoints) {
313 distance += SkScalarHalf(fIntervals[0]);
314
315 for (int i = 0; i < numMidPoints; ++i) {
316 SkScalar x = pts[0].fX + tangent.fX * distance;
317 SkScalar y = pts[0].fY + tangent.fY * distance;
318
319 SkASSERT(curPt < results->fNumPoints);
320 results->fPoints[curPt].set(x, y);
321 ++curPt;
322
323 distance += fIntervalLength;
324 }
325
326 distance -= SkScalarHalf(fIntervals[0]);
327 }
328
329 if (partialLast) {
330 // partial final block
331 SkASSERT(SkPaint::kRound_Cap != rec.getCap()); // can't handle partial circles
332 SkScalar temp = length - distance;
333 SkASSERT(temp < fIntervals[0]);
334 SkScalar x = pts[0].fX + tangent.fX * (distance + SkScalarHalf(temp));
335 SkScalar y = pts[0].fY + tangent.fY * (distance + SkScalarHalf(temp));
336 SkScalar halfWidth, halfHeight;
337 if (isXAxis) {
338 halfWidth = SkScalarHalf(temp);
339 halfHeight = SkScalarHalf(rec.getWidth());
340 } else {
341 halfWidth = SkScalarHalf(rec.getWidth());
342 halfHeight = SkScalarHalf(temp);
343 }
344 results->fLast.addRect(x - halfWidth, y - halfHeight,
345 x + halfWidth, y + halfHeight);
346 }
347
348 SkASSERT(curPt == results->fNumPoints);
349 }
350
351 return true;
352 }
353
asADash(DashInfo * info) const354 SkPathEffect::DashType SkDashPathEffect::asADash(DashInfo* info) const {
355 if (info) {
356 if (info->fCount >= fCount && info->fIntervals) {
357 memcpy(info->fIntervals, fIntervals, fCount * sizeof(SkScalar));
358 }
359 info->fCount = fCount;
360 info->fPhase = fPhase;
361 }
362 return kDash_DashType;
363 }
364
flatten(SkWriteBuffer & buffer) const365 void SkDashPathEffect::flatten(SkWriteBuffer& buffer) const {
366 buffer.writeScalar(fPhase);
367 buffer.writeScalarArray(fIntervals, fCount);
368 }
369
CreateProc(SkReadBuffer & buffer)370 sk_sp<SkFlattenable> SkDashPathEffect::CreateProc(SkReadBuffer& buffer) {
371 const SkScalar phase = buffer.readScalar();
372 uint32_t count = buffer.getArrayCount();
373 SkAutoSTArray<32, SkScalar> intervals(count);
374 if (buffer.readScalarArray(intervals.get(), count)) {
375 return Make(intervals.get(), SkToInt(count), phase);
376 }
377 return nullptr;
378 }
379
380 #ifndef SK_IGNORE_TO_STRING
toString(SkString * str) const381 void SkDashPathEffect::toString(SkString* str) const {
382 str->appendf("SkDashPathEffect: (");
383 str->appendf("count: %d phase %.2f intervals: (", fCount, fPhase);
384 for (int i = 0; i < fCount; ++i) {
385 str->appendf("%.2f", fIntervals[i]);
386 if (i < fCount-1) {
387 str->appendf(", ");
388 }
389 }
390 str->appendf("))");
391 }
392 #endif
393
394 //////////////////////////////////////////////////////////////////////////////////////////////////
395
Make(const SkScalar intervals[],int count,SkScalar phase)396 sk_sp<SkPathEffect> SkDashPathEffect::Make(const SkScalar intervals[], int count, SkScalar phase) {
397 if (!SkDashPath::ValidDashPath(phase, intervals, count)) {
398 return nullptr;
399 }
400 return sk_sp<SkPathEffect>(new SkDashPathEffect(intervals, count, phase));
401 }
402