Chris Craik | b49f446 | 2014-03-20 12:44:20 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | #ifndef OUTLINE_H |
| 17 | #define OUTLINE_H |
| 18 | |
| 19 | #include <SkPath.h> |
| 20 | |
| 21 | #include "Rect.h" |
Chris Craik | b60d3e7 | 2015-06-25 17:15:16 -0700 | [diff] [blame] | 22 | #include "utils/MathUtils.h" |
Chris Craik | b49f446 | 2014-03-20 12:44:20 -0700 | [diff] [blame] | 23 | |
| 24 | namespace android { |
| 25 | namespace uirenderer { |
| 26 | |
| 27 | class Outline { |
| 28 | public: |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 29 | enum class Type { None = 0, Empty = 1, ConvexPath = 2, RoundRect = 3 }; |
John Reck | e248bd1 | 2015-08-05 13:53:53 -0700 | [diff] [blame] | 30 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 31 | Outline() : mShouldClip(false), mType(Type::None), mRadius(0), mAlpha(0.0f) {} |
Chris Craik | b49f446 | 2014-03-20 12:44:20 -0700 | [diff] [blame] | 32 | |
Chris Craik | 77b5cad | 2014-07-30 18:23:07 -0700 | [diff] [blame] | 33 | void setRoundRect(int left, int top, int right, int bottom, float radius, float alpha) { |
Chris Craik | 40de9f2 | 2015-07-29 12:51:41 -0700 | [diff] [blame] | 34 | mAlpha = alpha; |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 35 | if (mType == Type::RoundRect && left == mBounds.left && right == mBounds.right && |
| 36 | top == mBounds.top && bottom == mBounds.bottom && radius == mRadius) { |
Chris Craik | 40de9f2 | 2015-07-29 12:51:41 -0700 | [diff] [blame] | 37 | // nothing to change, don't do any work |
| 38 | return; |
| 39 | } |
| 40 | |
Chris Craik | b9ce116d | 2015-08-20 15:14:06 -0700 | [diff] [blame] | 41 | mType = Type::RoundRect; |
Chris Craik | b49f446 | 2014-03-20 12:44:20 -0700 | [diff] [blame] | 42 | mBounds.set(left, top, right, bottom); |
| 43 | mRadius = radius; |
Chris Craik | 40de9f2 | 2015-07-29 12:51:41 -0700 | [diff] [blame] | 44 | |
| 45 | // update mPath to reflect new outline |
Chris Craik | b49f446 | 2014-03-20 12:44:20 -0700 | [diff] [blame] | 46 | mPath.reset(); |
Chris Craik | 40de9f2 | 2015-07-29 12:51:41 -0700 | [diff] [blame] | 47 | if (MathUtils::isPositive(radius)) { |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 48 | mPath.addRoundRect(SkRect::MakeLTRB(left, top, right, bottom), radius, radius); |
Chris Craik | 40de9f2 | 2015-07-29 12:51:41 -0700 | [diff] [blame] | 49 | } else { |
| 50 | mPath.addRect(left, top, right, bottom); |
| 51 | } |
Chris Craik | b49f446 | 2014-03-20 12:44:20 -0700 | [diff] [blame] | 52 | } |
| 53 | |
Chris Craik | 77b5cad | 2014-07-30 18:23:07 -0700 | [diff] [blame] | 54 | void setConvexPath(const SkPath* outline, float alpha) { |
Chris Craik | b49f446 | 2014-03-20 12:44:20 -0700 | [diff] [blame] | 55 | if (!outline) { |
| 56 | setEmpty(); |
| 57 | return; |
| 58 | } |
Chris Craik | b9ce116d | 2015-08-20 15:14:06 -0700 | [diff] [blame] | 59 | mType = Type::ConvexPath; |
Chris Craik | b49f446 | 2014-03-20 12:44:20 -0700 | [diff] [blame] | 60 | mPath = *outline; |
| 61 | mBounds.set(outline->getBounds()); |
Chris Craik | 77b5cad | 2014-07-30 18:23:07 -0700 | [diff] [blame] | 62 | mAlpha = alpha; |
Chris Craik | b49f446 | 2014-03-20 12:44:20 -0700 | [diff] [blame] | 63 | } |
| 64 | |
Chris Craik | 0645128 | 2014-07-21 10:25:54 -0700 | [diff] [blame] | 65 | void setEmpty() { |
Chris Craik | b9ce116d | 2015-08-20 15:14:06 -0700 | [diff] [blame] | 66 | mType = Type::Empty; |
Chris Craik | 0645128 | 2014-07-21 10:25:54 -0700 | [diff] [blame] | 67 | mPath.reset(); |
Chris Craik | 77b5cad | 2014-07-30 18:23:07 -0700 | [diff] [blame] | 68 | mAlpha = 0.0f; |
Chris Craik | 6131732 | 2014-05-21 13:03:52 -0700 | [diff] [blame] | 69 | } |
| 70 | |
Chris Craik | 0645128 | 2014-07-21 10:25:54 -0700 | [diff] [blame] | 71 | void setNone() { |
Chris Craik | b9ce116d | 2015-08-20 15:14:06 -0700 | [diff] [blame] | 72 | mType = Type::None; |
Chris Craik | b49f446 | 2014-03-20 12:44:20 -0700 | [diff] [blame] | 73 | mPath.reset(); |
Chris Craik | 77b5cad | 2014-07-30 18:23:07 -0700 | [diff] [blame] | 74 | mAlpha = 0.0f; |
Chris Craik | b49f446 | 2014-03-20 12:44:20 -0700 | [diff] [blame] | 75 | } |
| 76 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 77 | bool isEmpty() const { return mType == Type::Empty; } |
Chris Craik | 0645128 | 2014-07-21 10:25:54 -0700 | [diff] [blame] | 78 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 79 | float getAlpha() const { return mAlpha; } |
Chris Craik | 77b5cad | 2014-07-30 18:23:07 -0700 | [diff] [blame] | 80 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 81 | void setShouldClip(bool clip) { mShouldClip = clip; } |
Chris Craik | b49f446 | 2014-03-20 12:44:20 -0700 | [diff] [blame] | 82 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 83 | bool getShouldClip() const { return mShouldClip; } |
Chris Craik | deeda3d | 2014-05-05 19:09:33 -0700 | [diff] [blame] | 84 | |
Chris Craik | b49f446 | 2014-03-20 12:44:20 -0700 | [diff] [blame] | 85 | bool willClip() const { |
| 86 | // only round rect outlines can be used for clipping |
Chris Craik | b9ce116d | 2015-08-20 15:14:06 -0700 | [diff] [blame] | 87 | return mShouldClip && (mType == Type::RoundRect); |
Chris Craik | b49f446 | 2014-03-20 12:44:20 -0700 | [diff] [blame] | 88 | } |
| 89 | |
Chris Craik | b60d3e7 | 2015-06-25 17:15:16 -0700 | [diff] [blame] | 90 | bool willRoundRectClip() const { |
| 91 | // only round rect outlines can be used for clipping |
| 92 | return willClip() && MathUtils::isPositive(mRadius); |
| 93 | } |
| 94 | |
Chris Craik | deeda3d | 2014-05-05 19:09:33 -0700 | [diff] [blame] | 95 | bool getAsRoundRect(Rect* outRect, float* outRadius) const { |
Chris Craik | b9ce116d | 2015-08-20 15:14:06 -0700 | [diff] [blame] | 96 | if (mType == Type::RoundRect) { |
Chris Craik | deeda3d | 2014-05-05 19:09:33 -0700 | [diff] [blame] | 97 | outRect->set(mBounds); |
| 98 | *outRadius = mRadius; |
| 99 | return true; |
| 100 | } |
| 101 | return false; |
| 102 | } |
| 103 | |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 104 | const SkPath* getPath() const { |
Chris Craik | b9ce116d | 2015-08-20 15:14:06 -0700 | [diff] [blame] | 105 | if (mType == Type::None || mType == Type::Empty) return nullptr; |
Chris Craik | b49f446 | 2014-03-20 12:44:20 -0700 | [diff] [blame] | 106 | |
| 107 | return &mPath; |
| 108 | } |
| 109 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 110 | Type getType() const { return mType; } |
Chris Craik | b49f446 | 2014-03-20 12:44:20 -0700 | [diff] [blame] | 111 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 112 | const Rect& getBounds() const { return mBounds; } |
John Reck | e248bd1 | 2015-08-05 13:53:53 -0700 | [diff] [blame] | 113 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 114 | float getRadius() const { return mRadius; } |
John Reck | e248bd1 | 2015-08-05 13:53:53 -0700 | [diff] [blame] | 115 | |
| 116 | private: |
Chris Craik | b49f446 | 2014-03-20 12:44:20 -0700 | [diff] [blame] | 117 | bool mShouldClip; |
Chris Craik | b9ce116d | 2015-08-20 15:14:06 -0700 | [diff] [blame] | 118 | Type mType; |
Chris Craik | b49f446 | 2014-03-20 12:44:20 -0700 | [diff] [blame] | 119 | Rect mBounds; |
| 120 | float mRadius; |
Chris Craik | 77b5cad | 2014-07-30 18:23:07 -0700 | [diff] [blame] | 121 | float mAlpha; |
Chris Craik | b49f446 | 2014-03-20 12:44:20 -0700 | [diff] [blame] | 122 | SkPath mPath; |
| 123 | }; |
| 124 | |
| 125 | } /* namespace uirenderer */ |
| 126 | } /* namespace android */ |
| 127 | |
| 128 | #endif /* OUTLINE_H */ |