Mike Reed | 4123223 | 2018-03-07 17:02:47 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2018 Google Inc. |
| 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 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 8 | #include "include/core/SkPathMeasure.h" |
| 9 | #include "include/effects/SkTrimPathEffect.h" |
Mike Klein | 8aa0edf | 2020-10-16 11:04:18 -0500 | [diff] [blame^] | 10 | #include "include/private/SkTPin.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 11 | #include "src/core/SkReadBuffer.h" |
| 12 | #include "src/core/SkWriteBuffer.h" |
| 13 | #include "src/effects/SkTrimPE.h" |
Mike Reed | 4123223 | 2018-03-07 17:02:47 -0500 | [diff] [blame] | 14 | |
Florin Malita | 827af66 | 2018-03-09 16:08:58 -0500 | [diff] [blame] | 15 | namespace { |
| 16 | |
Florin Malita | 0022f5c | 2020-04-07 08:56:47 -0400 | [diff] [blame] | 17 | // Returns the number of contours iterated to satisfy the request. |
| 18 | static size_t add_segments(const SkPath& src, SkScalar start, SkScalar stop, SkPath* dst, |
| 19 | bool requires_moveto = true) { |
| 20 | SkASSERT(start < stop); |
Florin Malita | 827af66 | 2018-03-09 16:08:58 -0500 | [diff] [blame] | 21 | |
Florin Malita | 0022f5c | 2020-04-07 08:56:47 -0400 | [diff] [blame] | 22 | SkPathMeasure measure(src, false); |
Florin Malita | 827af66 | 2018-03-09 16:08:58 -0500 | [diff] [blame] | 23 | |
Florin Malita | 0022f5c | 2020-04-07 08:56:47 -0400 | [diff] [blame] | 24 | SkScalar current_segment_offset = 0; |
| 25 | size_t contour_count = 1; |
Florin Malita | 827af66 | 2018-03-09 16:08:58 -0500 | [diff] [blame] | 26 | |
Florin Malita | 0022f5c | 2020-04-07 08:56:47 -0400 | [diff] [blame] | 27 | do { |
| 28 | const auto next_offset = current_segment_offset + measure.getLength(); |
Florin Malita | 827af66 | 2018-03-09 16:08:58 -0500 | [diff] [blame] | 29 | |
Florin Malita | 0022f5c | 2020-04-07 08:56:47 -0400 | [diff] [blame] | 30 | if (start < next_offset) { |
| 31 | measure.getSegment(start - current_segment_offset, |
| 32 | stop - current_segment_offset, |
| 33 | dst, requires_moveto); |
Florin Malita | 827af66 | 2018-03-09 16:08:58 -0500 | [diff] [blame] | 34 | |
Florin Malita | 0022f5c | 2020-04-07 08:56:47 -0400 | [diff] [blame] | 35 | if (stop <= next_offset) |
| 36 | break; |
| 37 | } |
Florin Malita | 827af66 | 2018-03-09 16:08:58 -0500 | [diff] [blame] | 38 | |
Florin Malita | 0022f5c | 2020-04-07 08:56:47 -0400 | [diff] [blame] | 39 | contour_count++; |
| 40 | current_segment_offset = next_offset; |
| 41 | } while (measure.nextContour()); |
Florin Malita | 827af66 | 2018-03-09 16:08:58 -0500 | [diff] [blame] | 42 | |
Florin Malita | 0022f5c | 2020-04-07 08:56:47 -0400 | [diff] [blame] | 43 | return contour_count; |
| 44 | } |
Florin Malita | 827af66 | 2018-03-09 16:08:58 -0500 | [diff] [blame] | 45 | |
| 46 | } // namespace |
| 47 | |
| 48 | SkTrimPE::SkTrimPE(SkScalar startT, SkScalar stopT, SkTrimPathEffect::Mode mode) |
| 49 | : fStartT(startT), fStopT(stopT), fMode(mode) {} |
Mike Reed | 4123223 | 2018-03-07 17:02:47 -0500 | [diff] [blame] | 50 | |
Florin Malita | 0022f5c | 2020-04-07 08:56:47 -0400 | [diff] [blame] | 51 | bool SkTrimPE::onFilterPath(SkPath* dst, const SkPath& src, SkStrokeRec*, const SkRect*) const { |
Florin Malita | 827af66 | 2018-03-09 16:08:58 -0500 | [diff] [blame] | 52 | if (fStartT >= fStopT) { |
| 53 | SkASSERT(fMode == SkTrimPathEffect::Mode::kNormal); |
| 54 | return true; |
Mike Reed | 4123223 | 2018-03-07 17:02:47 -0500 | [diff] [blame] | 55 | } |
Florin Malita | 827af66 | 2018-03-09 16:08:58 -0500 | [diff] [blame] | 56 | |
| 57 | // First pass: compute the total len. |
| 58 | SkScalar len = 0; |
| 59 | SkPathMeasure meas(src, false); |
| 60 | do { |
| 61 | len += meas.getLength(); |
| 62 | } while (meas.nextContour()); |
| 63 | |
| 64 | const auto arcStart = len * fStartT, |
| 65 | arcStop = len * fStopT; |
| 66 | |
| 67 | // Second pass: actually add segments. |
Florin Malita | 827af66 | 2018-03-09 16:08:58 -0500 | [diff] [blame] | 68 | if (fMode == SkTrimPathEffect::Mode::kNormal) { |
Florin Malita | 0022f5c | 2020-04-07 08:56:47 -0400 | [diff] [blame] | 69 | // Normal mode -> one span. |
| 70 | if (arcStart < arcStop) { |
| 71 | add_segments(src, arcStart, arcStop, dst); |
| 72 | } |
Florin Malita | 827af66 | 2018-03-09 16:08:58 -0500 | [diff] [blame] | 73 | } else { |
Florin Malita | 0022f5c | 2020-04-07 08:56:47 -0400 | [diff] [blame] | 74 | // Inverted mode -> one logical span which wraps around at the end -> two actual spans. |
| 75 | // In order to preserve closed path continuity: |
| 76 | // |
| 77 | // 1) add the second/tail span first |
| 78 | // |
| 79 | // 2) skip the head span move-to for single-closed-contour paths |
| 80 | |
| 81 | bool requires_moveto = true; |
| 82 | if (arcStop < len) { |
| 83 | // since we're adding the "tail" first, this is the total number of contours |
| 84 | const auto contour_count = add_segments(src, arcStop, len, dst); |
| 85 | |
| 86 | // if the path consists of a single closed contour, we don't want to disconnect |
| 87 | // the two parts with a moveto. |
| 88 | if (contour_count == 1 && src.isLastContourClosed()) { |
| 89 | requires_moveto = false; |
| 90 | } |
| 91 | } |
| 92 | if (0 < arcStart) { |
| 93 | add_segments(src, 0, arcStart, dst, requires_moveto); |
| 94 | } |
Florin Malita | 827af66 | 2018-03-09 16:08:58 -0500 | [diff] [blame] | 95 | } |
| 96 | |
Mike Reed | 4123223 | 2018-03-07 17:02:47 -0500 | [diff] [blame] | 97 | return true; |
| 98 | } |
| 99 | |
| 100 | void SkTrimPE::flatten(SkWriteBuffer& buffer) const { |
| 101 | buffer.writeScalar(fStartT); |
| 102 | buffer.writeScalar(fStopT); |
Florin Malita | 827af66 | 2018-03-09 16:08:58 -0500 | [diff] [blame] | 103 | buffer.writeUInt(static_cast<uint32_t>(fMode)); |
Mike Reed | 4123223 | 2018-03-07 17:02:47 -0500 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | sk_sp<SkFlattenable> SkTrimPE::CreateProc(SkReadBuffer& buffer) { |
Florin Malita | 827af66 | 2018-03-09 16:08:58 -0500 | [diff] [blame] | 107 | const auto start = buffer.readScalar(), |
| 108 | stop = buffer.readScalar(); |
| 109 | const auto mode = buffer.readUInt(); |
| 110 | |
| 111 | return SkTrimPathEffect::Make(start, stop, |
| 112 | (mode & 1) ? SkTrimPathEffect::Mode::kInverted : SkTrimPathEffect::Mode::kNormal); |
Mike Reed | 4123223 | 2018-03-07 17:02:47 -0500 | [diff] [blame] | 113 | } |
| 114 | |
Mike Reed | 4123223 | 2018-03-07 17:02:47 -0500 | [diff] [blame] | 115 | ////////////////////////////////////////////////////////////////////////////////////////////////// |
| 116 | |
Florin Malita | 827af66 | 2018-03-09 16:08:58 -0500 | [diff] [blame] | 117 | sk_sp<SkPathEffect> SkTrimPathEffect::Make(SkScalar startT, SkScalar stopT, Mode mode) { |
Mike Reed | 4123223 | 2018-03-07 17:02:47 -0500 | [diff] [blame] | 118 | if (!SkScalarsAreFinite(startT, stopT)) { |
| 119 | return nullptr; |
| 120 | } |
Florin Malita | 827af66 | 2018-03-09 16:08:58 -0500 | [diff] [blame] | 121 | |
| 122 | if (startT <= 0 && stopT >= 1 && mode == Mode::kNormal) { |
Mike Reed | 4123223 | 2018-03-07 17:02:47 -0500 | [diff] [blame] | 123 | return nullptr; |
| 124 | } |
Florin Malita | 827af66 | 2018-03-09 16:08:58 -0500 | [diff] [blame] | 125 | |
| 126 | startT = SkTPin(startT, 0.f, 1.f); |
| 127 | stopT = SkTPin(stopT, 0.f, 1.f); |
| 128 | |
| 129 | if (startT >= stopT && mode == Mode::kInverted) { |
| 130 | return nullptr; |
| 131 | } |
| 132 | |
| 133 | return sk_sp<SkPathEffect>(new SkTrimPE(startT, stopT, mode)); |
Mike Reed | 4123223 | 2018-03-07 17:02:47 -0500 | [diff] [blame] | 134 | } |