caryclark@google.com | 235f56a | 2012-09-14 14:19:30 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012 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 | */ |
skia.committer@gmail.com | b0a327e | 2012-11-21 02:02:25 +0000 | [diff] [blame] | 7 | |
caryclark@google.com | 235f56a | 2012-09-14 14:19:30 +0000 | [diff] [blame] | 8 | #include "Simplify.h" |
| 9 | |
| 10 | namespace Op { |
| 11 | |
caryclark@google.com | 7ba591e | 2012-11-20 14:21:54 +0000 | [diff] [blame] | 12 | #define INCLUDED_BY_SHAPE_OPS 1 |
| 13 | |
caryclark@google.com | 235f56a | 2012-09-14 14:19:30 +0000 | [diff] [blame] | 14 | #include "Simplify.cpp" |
| 15 | |
caryclark@google.com | 31143cf | 2012-11-09 22:14:19 +0000 | [diff] [blame] | 16 | // FIXME: this and find chase should be merge together, along with |
| 17 | // other code that walks winding in angles |
| 18 | // OPTIMIZATION: Probably, the walked winding should be rolled into the angle structure |
| 19 | // so it isn't duplicated by walkers like this one |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 20 | static Segment* findChaseOp(SkTDArray<Span*>& chase, int& nextStart, int& nextEnd) { |
caryclark@google.com | 31143cf | 2012-11-09 22:14:19 +0000 | [diff] [blame] | 21 | while (chase.count()) { |
| 22 | Span* span; |
| 23 | chase.pop(&span); |
| 24 | const Span& backPtr = span->fOther->span(span->fOtherIndex); |
| 25 | Segment* segment = backPtr.fOther; |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 26 | nextStart = backPtr.fOtherIndex; |
caryclark@google.com | 31143cf | 2012-11-09 22:14:19 +0000 | [diff] [blame] | 27 | SkTDArray<Angle> angles; |
| 28 | int done = 0; |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 29 | if (segment->activeAngle(nextStart, done, angles)) { |
caryclark@google.com | 31143cf | 2012-11-09 22:14:19 +0000 | [diff] [blame] | 30 | Angle* last = angles.end() - 1; |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 31 | nextStart = last->start(); |
| 32 | nextEnd = last->end(); |
caryclark@google.com | 31143cf | 2012-11-09 22:14:19 +0000 | [diff] [blame] | 33 | #if TRY_ROTATE |
| 34 | *chase.insert(0) = span; |
| 35 | #else |
| 36 | *chase.append() = span; |
| 37 | #endif |
| 38 | return last->segment(); |
| 39 | } |
| 40 | if (done == angles.count()) { |
| 41 | continue; |
| 42 | } |
| 43 | SkTDArray<Angle*> sorted; |
| 44 | bool sortable = Segment::SortAngles(angles, sorted); |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 45 | int angleCount = sorted.count(); |
caryclark@google.com | 31143cf | 2012-11-09 22:14:19 +0000 | [diff] [blame] | 46 | #if DEBUG_SORT |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 47 | sorted[0]->segment()->debugShowSort(__FUNCTION__, sorted, 0); |
caryclark@google.com | 31143cf | 2012-11-09 22:14:19 +0000 | [diff] [blame] | 48 | #endif |
| 49 | if (!sortable) { |
| 50 | continue; |
| 51 | } |
| 52 | // find first angle, initialize winding to computed fWindSum |
| 53 | int firstIndex = -1; |
| 54 | const Angle* angle; |
caryclark@google.com | 31143cf | 2012-11-09 22:14:19 +0000 | [diff] [blame] | 55 | do { |
| 56 | angle = sorted[++firstIndex]; |
| 57 | segment = angle->segment(); |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 58 | } while (segment->windSum(angle) == SK_MinS32); |
caryclark@google.com | 31143cf | 2012-11-09 22:14:19 +0000 | [diff] [blame] | 59 | #if DEBUG_SORT |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 60 | segment->debugShowSort(__FUNCTION__, sorted, firstIndex); |
caryclark@google.com | 31143cf | 2012-11-09 22:14:19 +0000 | [diff] [blame] | 61 | #endif |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 62 | int sumMiWinding = segment->updateWindingReverse(angle); |
| 63 | int sumSuWinding = segment->updateOppWindingReverse(angle); |
| 64 | if (segment->operand()) { |
| 65 | SkTSwap<int>(sumMiWinding, sumSuWinding); |
| 66 | } |
| 67 | int nextIndex = firstIndex + 1; |
| 68 | int lastIndex = firstIndex != 0 ? firstIndex : angleCount; |
| 69 | Segment* first = NULL; |
caryclark@google.com | 31143cf | 2012-11-09 22:14:19 +0000 | [diff] [blame] | 70 | do { |
| 71 | SkASSERT(nextIndex != firstIndex); |
| 72 | if (nextIndex == angleCount) { |
| 73 | nextIndex = 0; |
| 74 | } |
| 75 | angle = sorted[nextIndex]; |
| 76 | segment = angle->segment(); |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 77 | int start = angle->start(); |
| 78 | int end = angle->end(); |
caryclark@google.com | db0b3e0 | 2012-12-21 21:34:36 +0000 | [diff] [blame] | 79 | int maxWinding, sumWinding, oppMaxWinding, oppSumWinding; |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 80 | segment->setUpWindings(start, end, sumMiWinding, sumSuWinding, |
| 81 | maxWinding, sumWinding, oppMaxWinding, oppSumWinding); |
| 82 | if (!segment->done(angle)) { |
| 83 | if (!first) { |
| 84 | first = segment; |
| 85 | nextStart = start; |
| 86 | nextEnd = end; |
caryclark@google.com | 31143cf | 2012-11-09 22:14:19 +0000 | [diff] [blame] | 87 | } |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 88 | (void) segment->markAngle(maxWinding, sumWinding, oppMaxWinding, |
| 89 | oppSumWinding, true, angle); |
caryclark@google.com | 31143cf | 2012-11-09 22:14:19 +0000 | [diff] [blame] | 90 | } |
| 91 | } while (++nextIndex != lastIndex); |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 92 | if (first) { |
| 93 | #if TRY_ROTATE |
| 94 | *chase.insert(0) = span; |
| 95 | #else |
| 96 | *chase.append() = span; |
| 97 | #endif |
| 98 | return first; |
| 99 | } |
caryclark@google.com | 31143cf | 2012-11-09 22:14:19 +0000 | [diff] [blame] | 100 | } |
| 101 | return NULL; |
caryclark@google.com | 235f56a | 2012-09-14 14:19:30 +0000 | [diff] [blame] | 102 | } |
| 103 | |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 104 | /* |
caryclark@google.com | 57cff8d | 2012-11-14 21:14:56 +0000 | [diff] [blame] | 105 | static bool windingIsActive(int winding, int oppWinding, int spanWinding, int oppSpanWinding, |
caryclark@google.com | 31143cf | 2012-11-09 22:14:19 +0000 | [diff] [blame] | 106 | bool windingIsOp, ShapeOp op) { |
| 107 | bool active = windingIsActive(winding, spanWinding); |
| 108 | if (!active) { |
| 109 | return false; |
| 110 | } |
caryclark@google.com | 57cff8d | 2012-11-14 21:14:56 +0000 | [diff] [blame] | 111 | if (oppSpanWinding && windingIsActive(oppWinding, oppSpanWinding)) { |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 112 | switch (op) { |
| 113 | case kIntersect_Op: |
| 114 | case kUnion_Op: |
| 115 | return true; |
| 116 | case kDifference_Op: { |
| 117 | int absSpan = abs(spanWinding); |
| 118 | int absOpp = abs(oppSpanWinding); |
| 119 | return windingIsOp ? absSpan < absOpp : absSpan > absOpp; |
| 120 | } |
| 121 | case kXor_Op: |
| 122 | return spanWinding != oppSpanWinding; |
| 123 | default: |
| 124 | SkASSERT(0); |
| 125 | } |
caryclark@google.com | 57cff8d | 2012-11-14 21:14:56 +0000 | [diff] [blame] | 126 | } |
caryclark@google.com | 31143cf | 2012-11-09 22:14:19 +0000 | [diff] [blame] | 127 | bool opActive = oppWinding != 0; |
| 128 | return gOpLookup[op][opActive][windingIsOp]; |
| 129 | } |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 130 | */ |
caryclark@google.com | 57cff8d | 2012-11-14 21:14:56 +0000 | [diff] [blame] | 131 | |
caryclark@google.com | 31143cf | 2012-11-09 22:14:19 +0000 | [diff] [blame] | 132 | static bool bridgeOp(SkTDArray<Contour*>& contourList, const ShapeOp op, |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 133 | const int xorMask, const int xorOpMask, PathWrapper& simple) { |
caryclark@google.com | 235f56a | 2012-09-14 14:19:30 +0000 | [diff] [blame] | 134 | bool firstContour = true; |
caryclark@google.com | 31143cf | 2012-11-09 22:14:19 +0000 | [diff] [blame] | 135 | bool unsortable = false; |
caryclark@google.com | e7bd5f4 | 2012-12-13 19:47:53 +0000 | [diff] [blame] | 136 | bool topUnsortable = false; |
caryclark@google.com | f839c03 | 2012-10-26 21:03:50 +0000 | [diff] [blame] | 137 | SkPoint topLeft = {SK_ScalarMin, SK_ScalarMin}; |
caryclark@google.com | 235f56a | 2012-09-14 14:19:30 +0000 | [diff] [blame] | 138 | do { |
caryclark@google.com | fb51afb | 2012-10-19 15:54:16 +0000 | [diff] [blame] | 139 | int index, endIndex; |
caryclark@google.com | db0b3e0 | 2012-12-21 21:34:36 +0000 | [diff] [blame] | 140 | bool done; |
caryclark@google.com | 3586ece | 2012-12-27 18:46:58 +0000 | [diff] [blame] | 141 | Segment* current = findSortableTop(contourList, firstContour, index, endIndex, topLeft, |
caryclark@google.com | db0b3e0 | 2012-12-21 21:34:36 +0000 | [diff] [blame] | 142 | topUnsortable, done, true); |
caryclark@google.com | fb51afb | 2012-10-19 15:54:16 +0000 | [diff] [blame] | 143 | if (!current) { |
caryclark@google.com | db0b3e0 | 2012-12-21 21:34:36 +0000 | [diff] [blame] | 144 | if (topUnsortable || !done) { |
caryclark@google.com | e7bd5f4 | 2012-12-13 19:47:53 +0000 | [diff] [blame] | 145 | topUnsortable = false; |
caryclark@google.com | 4aaaaea | 2013-02-28 16:12:39 +0000 | [diff] [blame] | 146 | SkASSERT(topLeft.fX != SK_ScalarMin && topLeft.fY != SK_ScalarMin); |
caryclark@google.com | e7bd5f4 | 2012-12-13 19:47:53 +0000 | [diff] [blame] | 147 | topLeft.fX = topLeft.fY = SK_ScalarMin; |
| 148 | continue; |
| 149 | } |
caryclark@google.com | fb51afb | 2012-10-19 15:54:16 +0000 | [diff] [blame] | 150 | break; |
| 151 | } |
caryclark@google.com | 235f56a | 2012-09-14 14:19:30 +0000 | [diff] [blame] | 152 | SkTDArray<Span*> chaseArray; |
| 153 | do { |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 154 | if (current->activeOp(index, endIndex, xorMask, xorOpMask, op)) { |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 155 | do { |
| 156 | #if DEBUG_ACTIVE_SPANS |
| 157 | if (!unsortable && current->done()) { |
| 158 | debugShowActiveSpans(contourList); |
caryclark@google.com | 235f56a | 2012-09-14 14:19:30 +0000 | [diff] [blame] | 159 | } |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 160 | #endif |
| 161 | SkASSERT(unsortable || !current->done()); |
| 162 | int nextStart = index; |
| 163 | int nextEnd = endIndex; |
| 164 | Segment* next = current->findNextOp(chaseArray, nextStart, nextEnd, |
| 165 | unsortable, op, xorMask, xorOpMask); |
| 166 | if (!next) { |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 167 | if (!unsortable && simple.hasMove() |
| 168 | && current->verb() != SkPath::kLine_Verb |
| 169 | && !simple.isClosed()) { |
| 170 | current->addCurveTo(index, endIndex, simple, true); |
| 171 | SkASSERT(simple.isClosed()); |
| 172 | } |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 173 | break; |
| 174 | } |
caryclark@google.com | 4aaaaea | 2013-02-28 16:12:39 +0000 | [diff] [blame] | 175 | #if DEBUG_FLOW |
| 176 | SkDebugf("%s current id=%d from=(%1.9g,%1.9g) to=(%1.9g,%1.9g)\n", __FUNCTION__, |
| 177 | current->debugID(), current->xyAtT(index).fX, current->xyAtT(index).fY, |
| 178 | current->xyAtT(endIndex).fX, current->xyAtT(endIndex).fY); |
| 179 | #endif |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 180 | current->addCurveTo(index, endIndex, simple, true); |
| 181 | current = next; |
| 182 | index = nextStart; |
| 183 | endIndex = nextEnd; |
caryclark@google.com | 4aaaaea | 2013-02-28 16:12:39 +0000 | [diff] [blame] | 184 | } while (!simple.isClosed() && ((!unsortable) |
| 185 | || !current->done(SkMin32(index, endIndex)))); |
| 186 | if (current->activeWinding(index, endIndex) && !simple.isClosed()) { |
caryclark@google.com | 31143cf | 2012-11-09 22:14:19 +0000 | [diff] [blame] | 187 | SkASSERT(unsortable); |
| 188 | int min = SkMin32(index, endIndex); |
| 189 | if (!current->done(min)) { |
| 190 | current->addCurveTo(index, endIndex, simple, true); |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 191 | current->markDoneBinary(min); |
caryclark@google.com | 31143cf | 2012-11-09 22:14:19 +0000 | [diff] [blame] | 192 | } |
caryclark@google.com | 31143cf | 2012-11-09 22:14:19 +0000 | [diff] [blame] | 193 | } |
caryclark@google.com | 235f56a | 2012-09-14 14:19:30 +0000 | [diff] [blame] | 194 | simple.close(); |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 195 | } else { |
| 196 | Span* last = current->markAndChaseDoneBinary(index, endIndex); |
caryclark@google.com | 4aaaaea | 2013-02-28 16:12:39 +0000 | [diff] [blame] | 197 | if (last && !last->fLoop) { |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 198 | *chaseArray.append() = last; |
| 199 | } |
caryclark@google.com | 235f56a | 2012-09-14 14:19:30 +0000 | [diff] [blame] | 200 | } |
caryclark@google.com | 31143cf | 2012-11-09 22:14:19 +0000 | [diff] [blame] | 201 | current = findChaseOp(chaseArray, index, endIndex); |
caryclark@google.com | 235f56a | 2012-09-14 14:19:30 +0000 | [diff] [blame] | 202 | #if DEBUG_ACTIVE_SPANS |
| 203 | debugShowActiveSpans(contourList); |
| 204 | #endif |
| 205 | if (!current) { |
| 206 | break; |
| 207 | } |
caryclark@google.com | 235f56a | 2012-09-14 14:19:30 +0000 | [diff] [blame] | 208 | } while (true); |
| 209 | } while (true); |
caryclark@google.com | 4aaaaea | 2013-02-28 16:12:39 +0000 | [diff] [blame] | 210 | return simple.someAssemblyRequired(); |
caryclark@google.com | 235f56a | 2012-09-14 14:19:30 +0000 | [diff] [blame] | 211 | } |
| 212 | |
| 213 | } // end of Op namespace |
| 214 | |
| 215 | |
| 216 | void operate(const SkPath& one, const SkPath& two, ShapeOp op, SkPath& result) { |
caryclark@google.com | 1304bb2 | 2013-03-13 20:29:41 +0000 | [diff] [blame] | 217 | #if DEBUG_SORT || DEBUG_SWAP_TOP |
caryclark@google.com | c83c70e | 2013-02-22 21:50:07 +0000 | [diff] [blame] | 218 | Op::gDebugSortCount = Op::gDebugSortCountDefault; |
| 219 | #endif |
caryclark@google.com | 235f56a | 2012-09-14 14:19:30 +0000 | [diff] [blame] | 220 | result.reset(); |
| 221 | result.setFillType(SkPath::kEvenOdd_FillType); |
| 222 | // turn path into list of segments |
| 223 | SkTArray<Op::Contour> contours; |
| 224 | // FIXME: add self-intersecting cubics' T values to segment |
| 225 | Op::EdgeBuilder builder(one, contours); |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 226 | const int xorMask = builder.xorMask(); |
caryclark@google.com | 235f56a | 2012-09-14 14:19:30 +0000 | [diff] [blame] | 227 | builder.addOperand(two); |
caryclark@google.com | 235f56a | 2012-09-14 14:19:30 +0000 | [diff] [blame] | 228 | builder.finish(); |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 229 | const int xorOpMask = builder.xorMask(); |
caryclark@google.com | 235f56a | 2012-09-14 14:19:30 +0000 | [diff] [blame] | 230 | SkTDArray<Op::Contour*> contourList; |
caryclark@google.com | 4eeda37 | 2012-12-06 21:47:48 +0000 | [diff] [blame] | 231 | makeContourList(contours, contourList, xorMask == kEvenOdd_Mask, |
| 232 | xorOpMask == kEvenOdd_Mask); |
caryclark@google.com | 235f56a | 2012-09-14 14:19:30 +0000 | [diff] [blame] | 233 | Op::Contour** currentPtr = contourList.begin(); |
| 234 | if (!currentPtr) { |
| 235 | return; |
| 236 | } |
| 237 | Op::Contour** listEnd = contourList.end(); |
| 238 | // find all intersections between segments |
| 239 | do { |
| 240 | Op::Contour** nextPtr = currentPtr; |
| 241 | Op::Contour* current = *currentPtr++; |
caryclark@google.com | c83c70e | 2013-02-22 21:50:07 +0000 | [diff] [blame] | 242 | if (current->containsCubics()) { |
| 243 | addSelfIntersectTs(current); |
| 244 | } |
caryclark@google.com | 235f56a | 2012-09-14 14:19:30 +0000 | [diff] [blame] | 245 | Op::Contour* next; |
| 246 | do { |
| 247 | next = *nextPtr++; |
| 248 | } while (addIntersectTs(current, next) && nextPtr != listEnd); |
| 249 | } while (currentPtr != listEnd); |
| 250 | // eat through coincident edges |
skia.committer@gmail.com | b0a327e | 2012-11-21 02:02:25 +0000 | [diff] [blame] | 251 | |
caryclark@google.com | 7ba591e | 2012-11-20 14:21:54 +0000 | [diff] [blame] | 252 | int total = 0; |
| 253 | int index; |
| 254 | for (index = 0; index < contourList.count(); ++index) { |
| 255 | total += contourList[index]->segments().count(); |
| 256 | } |
caryclark@google.com | 729e1c4 | 2012-11-21 21:36:34 +0000 | [diff] [blame] | 257 | #if DEBUG_SHOW_WINDING |
caryclark@google.com | 7ba591e | 2012-11-20 14:21:54 +0000 | [diff] [blame] | 258 | Op::Contour::debugShowWindingValues(contourList); |
| 259 | #endif |
caryclark@google.com | 4eeda37 | 2012-12-06 21:47:48 +0000 | [diff] [blame] | 260 | coincidenceCheck(contourList, total); |
caryclark@google.com | 729e1c4 | 2012-11-21 21:36:34 +0000 | [diff] [blame] | 261 | #if DEBUG_SHOW_WINDING |
caryclark@google.com | 7ba591e | 2012-11-20 14:21:54 +0000 | [diff] [blame] | 262 | Op::Contour::debugShowWindingValues(contourList); |
| 263 | #endif |
caryclark@google.com | 235f56a | 2012-09-14 14:19:30 +0000 | [diff] [blame] | 264 | fixOtherTIndex(contourList); |
caryclark@google.com | 31143cf | 2012-11-09 22:14:19 +0000 | [diff] [blame] | 265 | sortSegments(contourList); |
| 266 | #if DEBUG_ACTIVE_SPANS |
| 267 | debugShowActiveSpans(contourList); |
| 268 | #endif |
caryclark@google.com | 235f56a | 2012-09-14 14:19:30 +0000 | [diff] [blame] | 269 | // construct closed contours |
caryclark@google.com | f839c03 | 2012-10-26 21:03:50 +0000 | [diff] [blame] | 270 | Op::PathWrapper wrapper(result); |
caryclark@google.com | 7fce0de | 2012-11-29 14:31:50 +0000 | [diff] [blame] | 271 | bridgeOp(contourList, op, xorMask, xorOpMask, wrapper); |
caryclark@google.com | 1304bb2 | 2013-03-13 20:29:41 +0000 | [diff] [blame] | 272 | { // if some edges could not be resolved, assemble remaining fragments |
| 273 | SkPath temp; |
| 274 | temp.setFillType(SkPath::kEvenOdd_FillType); |
| 275 | Op::PathWrapper assembled(temp); |
| 276 | assemble(wrapper, assembled); |
| 277 | result = *assembled.nativePath(); |
| 278 | } |
caryclark@google.com | 235f56a | 2012-09-14 14:19:30 +0000 | [diff] [blame] | 279 | } |