caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +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 | */ |
| 7 | #ifndef SkOpEdgeBuilder_DEFINED |
| 8 | #define SkOpEdgeBuilder_DEFINED |
| 9 | |
| 10 | #include "SkOpContour.h" |
| 11 | #include "SkPathWriter.h" |
| 12 | #include "SkTArray.h" |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 13 | |
| 14 | class SkOpEdgeBuilder { |
| 15 | public: |
| 16 | SkOpEdgeBuilder(const SkPathWriter& path, SkTArray<SkOpContour>& contours) |
| 17 | : fPath(path.nativePath()) |
caryclark@google.com | 66560ca | 2013-04-26 19:51:16 +0000 | [diff] [blame] | 18 | , fContours(contours) |
| 19 | , fAllowOpenContours(true) { |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 20 | init(); |
| 21 | } |
| 22 | |
| 23 | SkOpEdgeBuilder(const SkPath& path, SkTArray<SkOpContour>& contours) |
| 24 | : fPath(&path) |
caryclark@google.com | 66560ca | 2013-04-26 19:51:16 +0000 | [diff] [blame] | 25 | , fContours(contours) |
| 26 | , fAllowOpenContours(false) { |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 27 | init(); |
| 28 | } |
| 29 | |
| 30 | void complete() { |
| 31 | if (fCurrentContour && fCurrentContour->segments().count()) { |
| 32 | fCurrentContour->complete(); |
| 33 | fCurrentContour = NULL; |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | SkPathOpsMask xorMask() const { |
| 38 | return fXorMask[fOperand]; |
| 39 | } |
| 40 | |
| 41 | void addOperand(const SkPath& path); |
caryclark@google.com | 66560ca | 2013-04-26 19:51:16 +0000 | [diff] [blame] | 42 | bool finish(); |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 43 | void init(); |
| 44 | |
| 45 | private: |
caryclark@google.com | 07e97fc | 2013-07-08 17:17:02 +0000 | [diff] [blame] | 46 | void closeContour(const SkPoint& curveEnd, const SkPoint& curveStart); |
caryclark@google.com | 66560ca | 2013-04-26 19:51:16 +0000 | [diff] [blame] | 47 | bool close(); |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 48 | int preFetch(); |
caryclark@google.com | 66560ca | 2013-04-26 19:51:16 +0000 | [diff] [blame] | 49 | bool walk(); |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 50 | |
| 51 | const SkPath* fPath; |
caryclark@google.com | d892bd8 | 2013-06-17 14:10:36 +0000 | [diff] [blame] | 52 | SkTArray<SkPoint, true> fPathPts; |
| 53 | SkTArray<uint8_t, true> fPathVerbs; |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 54 | SkOpContour* fCurrentContour; |
| 55 | SkTArray<SkOpContour>& fContours; |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 56 | SkPathOpsMask fXorMask[2]; |
| 57 | int fSecondHalf; |
| 58 | bool fOperand; |
caryclark@google.com | 66560ca | 2013-04-26 19:51:16 +0000 | [diff] [blame] | 59 | bool fAllowOpenContours; |
| 60 | bool fUnparseable; |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 61 | }; |
| 62 | |
| 63 | #endif |