Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 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 | |
| 17 | #include "compile/Image.h" |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 18 | |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 19 | #include <sstream> |
| 20 | #include <string> |
| 21 | #include <vector> |
| 22 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 23 | #include "androidfw/ResourceTypes.h" |
| 24 | |
| 25 | #include "util/StringPiece.h" |
| 26 | #include "util/Util.h" |
| 27 | |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 28 | namespace aapt { |
| 29 | |
| 30 | // Colors in the format 0xAARRGGBB (the way 9-patch expects it). |
| 31 | constexpr static const uint32_t kColorOpaqueWhite = 0xffffffffu; |
| 32 | constexpr static const uint32_t kColorOpaqueBlack = 0xff000000u; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 33 | constexpr static const uint32_t kColorOpaqueRed = 0xffff0000u; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 34 | |
| 35 | constexpr static const uint32_t kPrimaryColor = kColorOpaqueBlack; |
| 36 | constexpr static const uint32_t kSecondaryColor = kColorOpaqueRed; |
| 37 | |
| 38 | /** |
| 39 | * Returns the alpha value encoded in the 0xAARRGBB encoded pixel. |
| 40 | */ |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 41 | static uint32_t get_alpha(uint32_t color); |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 42 | |
| 43 | /** |
| 44 | * Determines whether a color on an ImageLine is valid. |
| 45 | * A 9patch image may use a transparent color as neutral, |
| 46 | * or a fully opaque white color as neutral, based on the |
| 47 | * pixel color at (0,0) of the image. One or the other is fine, |
| 48 | * but we need to ensure consistency throughout the image. |
| 49 | */ |
| 50 | class ColorValidator { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 51 | public: |
| 52 | virtual ~ColorValidator() = default; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 53 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 54 | /** |
| 55 | * Returns true if the color specified is a neutral color |
| 56 | * (no padding, stretching, or optical bounds). |
| 57 | */ |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 58 | virtual bool IsNeutralColor(uint32_t color) const = 0; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 59 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 60 | /** |
| 61 | * Returns true if the color is either a neutral color |
| 62 | * or one denoting padding, stretching, or optical bounds. |
| 63 | */ |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 64 | bool IsValidColor(uint32_t color) const { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 65 | switch (color) { |
| 66 | case kPrimaryColor: |
| 67 | case kSecondaryColor: |
| 68 | return true; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 69 | } |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 70 | return IsNeutralColor(color); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 71 | } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 72 | }; |
| 73 | |
| 74 | // Walks an ImageLine and records Ranges of primary and secondary colors. |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 75 | // The primary color is black and is used to denote a padding or stretching |
| 76 | // range, |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 77 | // depending on which border we're iterating over. |
| 78 | // The secondary color is red and is used to denote optical bounds. |
| 79 | // |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 80 | // An ImageLine is a templated-interface that would look something like this if |
| 81 | // it |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 82 | // were polymorphic: |
| 83 | // |
| 84 | // class ImageLine { |
| 85 | // public: |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 86 | // virtual int32_t GetLength() const = 0; |
| 87 | // virtual uint32_t GetColor(int32_t idx) const = 0; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 88 | // }; |
| 89 | // |
| 90 | template <typename ImageLine> |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 91 | static bool FillRanges(const ImageLine* image_line, |
| 92 | const ColorValidator* color_validator, |
| 93 | std::vector<Range>* primary_ranges, |
| 94 | std::vector<Range>* secondary_ranges, |
| 95 | std::string* out_err) { |
| 96 | const int32_t length = image_line->GetLength(); |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 97 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 98 | uint32_t last_color = 0xffffffffu; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 99 | for (int32_t idx = 1; idx < length - 1; idx++) { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 100 | const uint32_t color = image_line->GetColor(idx); |
| 101 | if (!color_validator->IsValidColor(color)) { |
| 102 | *out_err = "found an invalid color"; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 103 | return false; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 104 | } |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 105 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 106 | if (color != last_color) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 107 | // We are ending a range. Which range? |
| 108 | // note: encode the x offset without the final 1 pixel border. |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 109 | if (last_color == kPrimaryColor) { |
| 110 | primary_ranges->back().end = idx - 1; |
| 111 | } else if (last_color == kSecondaryColor) { |
| 112 | secondary_ranges->back().end = idx - 1; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | // We are starting a range. Which range? |
| 116 | // note: encode the x offset without the final 1 pixel border. |
| 117 | if (color == kPrimaryColor) { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 118 | primary_ranges->push_back(Range(idx - 1, length - 2)); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 119 | } else if (color == kSecondaryColor) { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 120 | secondary_ranges->push_back(Range(idx - 1, length - 2)); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 121 | } |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 122 | last_color = color; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 123 | } |
| 124 | } |
| 125 | return true; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | /** |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 129 | * Iterates over a row in an image. Implements the templated ImageLine |
| 130 | * interface. |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 131 | */ |
| 132 | class HorizontalImageLine { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 133 | public: |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 134 | explicit HorizontalImageLine(uint8_t** rows, int32_t xoffset, int32_t yoffset, |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 135 | int32_t length) |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 136 | : rows_(rows), xoffset_(xoffset), yoffset_(yoffset), length_(length) {} |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 137 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 138 | inline int32_t GetLength() const { return length_; } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 139 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 140 | inline uint32_t GetColor(int32_t idx) const { |
| 141 | return NinePatch::PackRGBA(rows_[yoffset_] + (idx + xoffset_) * 4); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 142 | } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 143 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 144 | private: |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 145 | uint8_t** rows_; |
| 146 | int32_t xoffset_, yoffset_, length_; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 147 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 148 | DISALLOW_COPY_AND_ASSIGN(HorizontalImageLine); |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 149 | }; |
| 150 | |
| 151 | /** |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 152 | * Iterates over a column in an image. Implements the templated ImageLine |
| 153 | * interface. |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 154 | */ |
| 155 | class VerticalImageLine { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 156 | public: |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 157 | explicit VerticalImageLine(uint8_t** rows, int32_t xoffset, int32_t yoffset, |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 158 | int32_t length) |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 159 | : rows_(rows), xoffset_(xoffset), yoffset_(yoffset), length_(length) {} |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 160 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 161 | inline int32_t GetLength() const { return length_; } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 162 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 163 | inline uint32_t GetColor(int32_t idx) const { |
| 164 | return NinePatch::PackRGBA(rows_[yoffset_ + idx] + (xoffset_ * 4)); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 165 | } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 166 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 167 | private: |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 168 | uint8_t** rows_; |
| 169 | int32_t xoffset_, yoffset_, length_; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 170 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 171 | DISALLOW_COPY_AND_ASSIGN(VerticalImageLine); |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 172 | }; |
| 173 | |
| 174 | class DiagonalImageLine { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 175 | public: |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 176 | explicit DiagonalImageLine(uint8_t** rows, int32_t xoffset, int32_t yoffset, |
| 177 | int32_t xstep, int32_t ystep, int32_t length) |
| 178 | : rows_(rows), |
| 179 | xoffset_(xoffset), |
| 180 | yoffset_(yoffset), |
| 181 | xstep_(xstep), |
| 182 | ystep_(ystep), |
| 183 | length_(length) {} |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 184 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 185 | inline int32_t GetLength() const { return length_; } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 186 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 187 | inline uint32_t GetColor(int32_t idx) const { |
| 188 | return NinePatch::PackRGBA(rows_[yoffset_ + (idx * ystep_)] + |
| 189 | ((idx + xoffset_) * xstep_) * 4); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 190 | } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 191 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 192 | private: |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 193 | uint8_t** rows_; |
| 194 | int32_t xoffset_, yoffset_, xstep_, ystep_, length_; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 195 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 196 | DISALLOW_COPY_AND_ASSIGN(DiagonalImageLine); |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 197 | }; |
| 198 | |
| 199 | class TransparentNeutralColorValidator : public ColorValidator { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 200 | public: |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 201 | bool IsNeutralColor(uint32_t color) const override { |
| 202 | return get_alpha(color) == 0; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 203 | } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 204 | }; |
| 205 | |
| 206 | class WhiteNeutralColorValidator : public ColorValidator { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 207 | public: |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 208 | bool IsNeutralColor(uint32_t color) const override { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 209 | return color == kColorOpaqueWhite; |
| 210 | } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 211 | }; |
| 212 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 213 | inline static uint32_t get_alpha(uint32_t color) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 214 | return (color & 0xff000000u) >> 24; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 215 | } |
| 216 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 217 | static bool PopulateBounds(const std::vector<Range>& padding, |
| 218 | const std::vector<Range>& layout_bounds, |
| 219 | const std::vector<Range>& stretch_regions, |
| 220 | const int32_t length, int32_t* padding_start, |
| 221 | int32_t* padding_end, int32_t* layout_start, |
| 222 | int32_t* layout_end, const StringPiece& edge_name, |
| 223 | std::string* out_err) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 224 | if (padding.size() > 1) { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 225 | std::stringstream err_stream; |
| 226 | err_stream << "too many padding sections on " << edge_name << " border"; |
| 227 | *out_err = err_stream.str(); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 228 | return false; |
| 229 | } |
| 230 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 231 | *padding_start = 0; |
| 232 | *padding_end = 0; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 233 | if (!padding.empty()) { |
| 234 | const Range& range = padding.front(); |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 235 | *padding_start = range.start; |
| 236 | *padding_end = length - range.end; |
| 237 | } else if (!stretch_regions.empty()) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 238 | // No padding was defined. Compute the padding from the first and last |
| 239 | // stretch regions. |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 240 | *padding_start = stretch_regions.front().start; |
| 241 | *padding_end = length - stretch_regions.back().end; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 242 | } |
| 243 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 244 | if (layout_bounds.size() > 2) { |
| 245 | std::stringstream err_stream; |
| 246 | err_stream << "too many layout bounds sections on " << edge_name |
| 247 | << " border"; |
| 248 | *out_err = err_stream.str(); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 249 | return false; |
| 250 | } |
| 251 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 252 | *layout_start = 0; |
| 253 | *layout_end = 0; |
| 254 | if (layout_bounds.size() >= 1) { |
| 255 | const Range& range = layout_bounds.front(); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 256 | // If there is only one layout bound segment, it might not start at 0, but |
| 257 | // then it should |
| 258 | // end at length. |
| 259 | if (range.start != 0 && range.end != length) { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 260 | std::stringstream err_stream; |
| 261 | err_stream << "layout bounds on " << edge_name |
| 262 | << " border must start at edge"; |
| 263 | *out_err = err_stream.str(); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 264 | return false; |
| 265 | } |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 266 | *layout_start = range.end; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 267 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 268 | if (layout_bounds.size() >= 2) { |
| 269 | const Range& range = layout_bounds.back(); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 270 | if (range.end != length) { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 271 | std::stringstream err_stream; |
| 272 | err_stream << "layout bounds on " << edge_name |
| 273 | << " border must start at edge"; |
| 274 | *out_err = err_stream.str(); |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 275 | return false; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 276 | } |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 277 | *layout_end = length - range.start; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 278 | } |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 279 | } |
| 280 | return true; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 281 | } |
| 282 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 283 | static int32_t CalculateSegmentCount(const std::vector<Range>& stretch_regions, |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 284 | int32_t length) { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 285 | if (stretch_regions.size() == 0) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 286 | return 0; |
| 287 | } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 288 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 289 | const bool start_is_fixed = stretch_regions.front().start != 0; |
| 290 | const bool end_is_fixed = stretch_regions.back().end != length; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 291 | int32_t modifier = 0; |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 292 | if (start_is_fixed && end_is_fixed) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 293 | modifier = 1; |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 294 | } else if (!start_is_fixed && !end_is_fixed) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 295 | modifier = -1; |
| 296 | } |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 297 | return static_cast<int32_t>(stretch_regions.size()) * 2 + modifier; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 298 | } |
| 299 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 300 | static uint32_t GetRegionColor(uint8_t** rows, const Bounds& region) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 301 | // Sample the first pixel to compare against. |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 302 | const uint32_t expected_color = |
| 303 | NinePatch::PackRGBA(rows[region.top] + region.left * 4); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 304 | for (int32_t y = region.top; y < region.bottom; y++) { |
| 305 | const uint8_t* row = rows[y]; |
| 306 | for (int32_t x = region.left; x < region.right; x++) { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 307 | const uint32_t color = NinePatch::PackRGBA(row + x * 4); |
| 308 | if (get_alpha(color) == 0) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 309 | // The color is transparent. |
| 310 | // If the expectedColor is not transparent, NO_COLOR. |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 311 | if (get_alpha(expected_color) != 0) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 312 | return android::Res_png_9patch::NO_COLOR; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 313 | } |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 314 | } else if (color != expected_color) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 315 | return android::Res_png_9patch::NO_COLOR; |
| 316 | } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 317 | } |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 318 | } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 319 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 320 | if (get_alpha(expected_color) == 0) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 321 | return android::Res_png_9patch::TRANSPARENT_COLOR; |
| 322 | } |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 323 | return expected_color; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 324 | } |
| 325 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 326 | // Fills out_colors with each 9-patch section's color. If the whole section is |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 327 | // transparent, |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 328 | // it gets the special TRANSPARENT color. If the whole section is the same |
| 329 | // color, it is assigned |
| 330 | // that color. Otherwise it gets the special NO_COLOR color. |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 331 | // |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 332 | // Note that the rows contain the 9-patch 1px border, and the indices in the |
| 333 | // stretch regions are |
| 334 | // already offset to exclude the border. This means that each time the rows are |
| 335 | // accessed, |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 336 | // the indices must be offset by 1. |
| 337 | // |
| 338 | // width and height also include the 9-patch 1px border. |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 339 | static void CalculateRegionColors( |
| 340 | uint8_t** rows, const std::vector<Range>& horizontal_stretch_regions, |
| 341 | const std::vector<Range>& vertical_stretch_regions, const int32_t width, |
| 342 | const int32_t height, std::vector<uint32_t>* out_colors) { |
| 343 | int32_t next_top = 0; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 344 | Bounds bounds; |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 345 | auto row_iter = vertical_stretch_regions.begin(); |
| 346 | while (next_top != height) { |
| 347 | if (row_iter != vertical_stretch_regions.end()) { |
| 348 | if (next_top != row_iter->start) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 349 | // This is a fixed segment. |
| 350 | // Offset the bounds by 1 to accommodate the border. |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 351 | bounds.top = next_top + 1; |
| 352 | bounds.bottom = row_iter->start + 1; |
| 353 | next_top = row_iter->start; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 354 | } else { |
| 355 | // This is a stretchy segment. |
| 356 | // Offset the bounds by 1 to accommodate the border. |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 357 | bounds.top = row_iter->start + 1; |
| 358 | bounds.bottom = row_iter->end + 1; |
| 359 | next_top = row_iter->end; |
| 360 | ++row_iter; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 361 | } |
| 362 | } else { |
| 363 | // This is the end, fixed section. |
| 364 | // Offset the bounds by 1 to accommodate the border. |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 365 | bounds.top = next_top + 1; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 366 | bounds.bottom = height + 1; |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 367 | next_top = height; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 368 | } |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 369 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 370 | int32_t next_left = 0; |
| 371 | auto col_iter = horizontal_stretch_regions.begin(); |
| 372 | while (next_left != width) { |
| 373 | if (col_iter != horizontal_stretch_regions.end()) { |
| 374 | if (next_left != col_iter->start) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 375 | // This is a fixed segment. |
| 376 | // Offset the bounds by 1 to accommodate the border. |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 377 | bounds.left = next_left + 1; |
| 378 | bounds.right = col_iter->start + 1; |
| 379 | next_left = col_iter->start; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 380 | } else { |
| 381 | // This is a stretchy segment. |
| 382 | // Offset the bounds by 1 to accommodate the border. |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 383 | bounds.left = col_iter->start + 1; |
| 384 | bounds.right = col_iter->end + 1; |
| 385 | next_left = col_iter->end; |
| 386 | ++col_iter; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 387 | } |
| 388 | } else { |
| 389 | // This is the end, fixed section. |
| 390 | // Offset the bounds by 1 to accommodate the border. |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 391 | bounds.left = next_left + 1; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 392 | bounds.right = width + 1; |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 393 | next_left = width; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 394 | } |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 395 | out_colors->push_back(GetRegionColor(rows, bounds)); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 396 | } |
| 397 | } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 398 | } |
| 399 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 400 | // Calculates the insets of a row/column of pixels based on where the largest |
| 401 | // alpha value begins |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 402 | // (on both sides). |
| 403 | template <typename ImageLine> |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 404 | static void FindOutlineInsets(const ImageLine* image_line, int32_t* out_start, |
| 405 | int32_t* out_end) { |
| 406 | *out_start = 0; |
| 407 | *out_end = 0; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 408 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 409 | const int32_t length = image_line->GetLength(); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 410 | if (length < 3) { |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 411 | return; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 412 | } |
| 413 | |
| 414 | // If the length is odd, we want both sides to process the center pixel, |
| 415 | // so we use two different midpoints (to account for < and <= in the different |
| 416 | // loops). |
| 417 | const int32_t mid2 = length / 2; |
| 418 | const int32_t mid1 = mid2 + (length % 2); |
| 419 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 420 | uint32_t max_alpha = 0; |
| 421 | for (int32_t i = 0; i < mid1 && max_alpha != 0xff; i++) { |
| 422 | uint32_t alpha = get_alpha(image_line->GetColor(i)); |
| 423 | if (alpha > max_alpha) { |
| 424 | max_alpha = alpha; |
| 425 | *out_start = i; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 426 | } |
| 427 | } |
| 428 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 429 | max_alpha = 0; |
| 430 | for (int32_t i = length - 1; i >= mid2 && max_alpha != 0xff; i--) { |
| 431 | uint32_t alpha = get_alpha(image_line->GetColor(i)); |
| 432 | if (alpha > max_alpha) { |
| 433 | max_alpha = alpha; |
| 434 | *out_end = length - (i + 1); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 435 | } |
| 436 | } |
| 437 | return; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 438 | } |
| 439 | |
| 440 | template <typename ImageLine> |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 441 | static uint32_t FindMaxAlpha(const ImageLine* image_line) { |
| 442 | const int32_t length = image_line->GetLength(); |
| 443 | uint32_t max_alpha = 0; |
| 444 | for (int32_t idx = 0; idx < length && max_alpha != 0xff; idx++) { |
| 445 | uint32_t alpha = get_alpha(image_line->GetColor(idx)); |
| 446 | if (alpha > max_alpha) { |
| 447 | max_alpha = alpha; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 448 | } |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 449 | } |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 450 | return max_alpha; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 451 | } |
| 452 | |
| 453 | // Pack the pixels in as 0xAARRGGBB (as 9-patch expects it). |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 454 | uint32_t NinePatch::PackRGBA(const uint8_t* pixel) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 455 | return (pixel[3] << 24) | (pixel[0] << 16) | (pixel[1] << 8) | pixel[2]; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 456 | } |
| 457 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 458 | std::unique_ptr<NinePatch> NinePatch::Create(uint8_t** rows, |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 459 | const int32_t width, |
| 460 | const int32_t height, |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 461 | std::string* out_err) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 462 | if (width < 3 || height < 3) { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 463 | *out_err = "image must be at least 3x3 (1x1 image with 1 pixel border)"; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 464 | return {}; |
| 465 | } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 466 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 467 | std::vector<Range> horizontal_padding; |
| 468 | std::vector<Range> horizontal_layout_bounds; |
| 469 | std::vector<Range> vertical_padding; |
| 470 | std::vector<Range> vertical_layout_bounds; |
| 471 | std::vector<Range> unexpected_ranges; |
| 472 | std::unique_ptr<ColorValidator> color_validator; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 473 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 474 | if (rows[0][3] == 0) { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 475 | color_validator = util::make_unique<TransparentNeutralColorValidator>(); |
| 476 | } else if (PackRGBA(rows[0]) == kColorOpaqueWhite) { |
| 477 | color_validator = util::make_unique<WhiteNeutralColorValidator>(); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 478 | } else { |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 479 | *out_err = |
| 480 | "top-left corner pixel must be either opaque white or transparent"; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 481 | return {}; |
| 482 | } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 483 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 484 | // Private constructor, can't use make_unique. |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 485 | auto nine_patch = std::unique_ptr<NinePatch>(new NinePatch()); |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 486 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 487 | HorizontalImageLine top_row(rows, 0, 0, width); |
| 488 | if (!FillRanges(&top_row, color_validator.get(), |
| 489 | &nine_patch->horizontal_stretch_regions, &unexpected_ranges, |
| 490 | out_err)) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 491 | return {}; |
| 492 | } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 493 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 494 | if (!unexpected_ranges.empty()) { |
| 495 | const Range& range = unexpected_ranges[0]; |
| 496 | std::stringstream err_stream; |
| 497 | err_stream << "found unexpected optical bounds (red pixel) on top border " |
| 498 | << "at x=" << range.start + 1; |
| 499 | *out_err = err_stream.str(); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 500 | return {}; |
| 501 | } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 502 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 503 | VerticalImageLine left_col(rows, 0, 0, height); |
| 504 | if (!FillRanges(&left_col, color_validator.get(), |
| 505 | &nine_patch->vertical_stretch_regions, &unexpected_ranges, |
| 506 | out_err)) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 507 | return {}; |
| 508 | } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 509 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 510 | if (!unexpected_ranges.empty()) { |
| 511 | const Range& range = unexpected_ranges[0]; |
| 512 | std::stringstream err_stream; |
| 513 | err_stream << "found unexpected optical bounds (red pixel) on left border " |
| 514 | << "at y=" << range.start + 1; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 515 | return {}; |
| 516 | } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 517 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 518 | HorizontalImageLine bottom_row(rows, 0, height - 1, width); |
| 519 | if (!FillRanges(&bottom_row, color_validator.get(), &horizontal_padding, |
| 520 | &horizontal_layout_bounds, out_err)) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 521 | return {}; |
| 522 | } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 523 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 524 | if (!PopulateBounds(horizontal_padding, horizontal_layout_bounds, |
| 525 | nine_patch->horizontal_stretch_regions, width - 2, |
| 526 | &nine_patch->padding.left, &nine_patch->padding.right, |
| 527 | &nine_patch->layout_bounds.left, |
| 528 | &nine_patch->layout_bounds.right, "bottom", out_err)) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 529 | return {}; |
| 530 | } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 531 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 532 | VerticalImageLine right_col(rows, width - 1, 0, height); |
| 533 | if (!FillRanges(&right_col, color_validator.get(), &vertical_padding, |
| 534 | &vertical_layout_bounds, out_err)) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 535 | return {}; |
| 536 | } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 537 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 538 | if (!PopulateBounds(vertical_padding, vertical_layout_bounds, |
| 539 | nine_patch->vertical_stretch_regions, height - 2, |
| 540 | &nine_patch->padding.top, &nine_patch->padding.bottom, |
| 541 | &nine_patch->layout_bounds.top, |
| 542 | &nine_patch->layout_bounds.bottom, "right", out_err)) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 543 | return {}; |
| 544 | } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 545 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 546 | // Fill the region colors of the 9-patch. |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 547 | const int32_t num_rows = |
| 548 | CalculateSegmentCount(nine_patch->horizontal_stretch_regions, width - 2); |
| 549 | const int32_t num_cols = |
| 550 | CalculateSegmentCount(nine_patch->vertical_stretch_regions, height - 2); |
| 551 | if ((int64_t)num_rows * (int64_t)num_cols > 0x7f) { |
| 552 | *out_err = "too many regions in 9-patch"; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 553 | return {}; |
| 554 | } |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 555 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 556 | nine_patch->region_colors.reserve(num_rows * num_cols); |
| 557 | CalculateRegionColors(rows, nine_patch->horizontal_stretch_regions, |
| 558 | nine_patch->vertical_stretch_regions, width - 2, |
| 559 | height - 2, &nine_patch->region_colors); |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 560 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 561 | // Compute the outline based on opacity. |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 562 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 563 | // Find left and right extent of 9-patch content on center row. |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 564 | HorizontalImageLine mid_row(rows, 1, height / 2, width - 2); |
| 565 | FindOutlineInsets(&mid_row, &nine_patch->outline.left, |
| 566 | &nine_patch->outline.right); |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 567 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 568 | // Find top and bottom extent of 9-patch content on center column. |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 569 | VerticalImageLine mid_col(rows, width / 2, 1, height - 2); |
| 570 | FindOutlineInsets(&mid_col, &nine_patch->outline.top, |
| 571 | &nine_patch->outline.bottom); |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 572 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 573 | const int32_t outline_width = |
| 574 | (width - 2) - nine_patch->outline.left - nine_patch->outline.right; |
| 575 | const int32_t outline_height = |
| 576 | (height - 2) - nine_patch->outline.top - nine_patch->outline.bottom; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 577 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 578 | // Find the largest alpha value within the outline area. |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 579 | HorizontalImageLine outline_mid_row( |
| 580 | rows, 1 + nine_patch->outline.left, |
| 581 | 1 + nine_patch->outline.top + (outline_height / 2), outline_width); |
| 582 | VerticalImageLine outline_mid_col( |
| 583 | rows, 1 + nine_patch->outline.left + (outline_width / 2), |
| 584 | 1 + nine_patch->outline.top, outline_height); |
| 585 | nine_patch->outline_alpha = |
| 586 | std::max(FindMaxAlpha(&outline_mid_row), FindMaxAlpha(&outline_mid_col)); |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 587 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 588 | // Assuming the image is a round rect, compute the radius by marching |
| 589 | // diagonally from the top left corner towards the center. |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 590 | DiagonalImageLine diagonal(rows, 1 + nine_patch->outline.left, |
| 591 | 1 + nine_patch->outline.top, 1, 1, |
| 592 | std::min(outline_width, outline_height)); |
| 593 | int32_t top_left, bottom_right; |
| 594 | FindOutlineInsets(&diagonal, &top_left, &bottom_right); |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 595 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 596 | /* Determine source radius based upon inset: |
| 597 | * sqrt(r^2 + r^2) = sqrt(i^2 + i^2) + r |
| 598 | * sqrt(2) * r = sqrt(2) * i + r |
| 599 | * (sqrt(2) - 1) * r = sqrt(2) * i |
| 600 | * r = sqrt(2) / (sqrt(2) - 1) * i |
| 601 | */ |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 602 | nine_patch->outline_radius = 3.4142f * top_left; |
| 603 | return nine_patch; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 604 | } |
| 605 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 606 | std::unique_ptr<uint8_t[]> NinePatch::SerializeBase(size_t* outLen) const { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 607 | android::Res_png_9patch data; |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 608 | data.numXDivs = static_cast<uint8_t>(horizontal_stretch_regions.size()) * 2; |
| 609 | data.numYDivs = static_cast<uint8_t>(vertical_stretch_regions.size()) * 2; |
| 610 | data.numColors = static_cast<uint8_t>(region_colors.size()); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 611 | data.paddingLeft = padding.left; |
| 612 | data.paddingRight = padding.right; |
| 613 | data.paddingTop = padding.top; |
| 614 | data.paddingBottom = padding.bottom; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 615 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 616 | auto buffer = std::unique_ptr<uint8_t[]>(new uint8_t[data.serializedSize()]); |
| 617 | android::Res_png_9patch::serialize( |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 618 | data, (const int32_t*)horizontal_stretch_regions.data(), |
| 619 | (const int32_t*)vertical_stretch_regions.data(), region_colors.data(), |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 620 | buffer.get()); |
| 621 | // Convert to file endianness. |
| 622 | reinterpret_cast<android::Res_png_9patch*>(buffer.get())->deviceToFile(); |
Adam Lesinski | edba941 | 2016-10-04 17:33:04 -0700 | [diff] [blame] | 623 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 624 | *outLen = data.serializedSize(); |
| 625 | return buffer; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 626 | } |
| 627 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 628 | std::unique_ptr<uint8_t[]> NinePatch::SerializeLayoutBounds( |
| 629 | size_t* out_len) const { |
| 630 | size_t chunk_len = sizeof(uint32_t) * 4; |
| 631 | auto buffer = std::unique_ptr<uint8_t[]>(new uint8_t[chunk_len]); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 632 | uint8_t* cursor = buffer.get(); |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 633 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 634 | memcpy(cursor, &layout_bounds.left, sizeof(layout_bounds.left)); |
| 635 | cursor += sizeof(layout_bounds.left); |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 636 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 637 | memcpy(cursor, &layout_bounds.top, sizeof(layout_bounds.top)); |
| 638 | cursor += sizeof(layout_bounds.top); |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 639 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 640 | memcpy(cursor, &layout_bounds.right, sizeof(layout_bounds.right)); |
| 641 | cursor += sizeof(layout_bounds.right); |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 642 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 643 | memcpy(cursor, &layout_bounds.bottom, sizeof(layout_bounds.bottom)); |
| 644 | cursor += sizeof(layout_bounds.bottom); |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 645 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 646 | *out_len = chunk_len; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 647 | return buffer; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 648 | } |
| 649 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 650 | std::unique_ptr<uint8_t[]> NinePatch::SerializeRoundedRectOutline( |
| 651 | size_t* out_len) const { |
| 652 | size_t chunk_len = sizeof(uint32_t) * 6; |
| 653 | auto buffer = std::unique_ptr<uint8_t[]>(new uint8_t[chunk_len]); |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 654 | uint8_t* cursor = buffer.get(); |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 655 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 656 | memcpy(cursor, &outline.left, sizeof(outline.left)); |
| 657 | cursor += sizeof(outline.left); |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 658 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 659 | memcpy(cursor, &outline.top, sizeof(outline.top)); |
| 660 | cursor += sizeof(outline.top); |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 661 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 662 | memcpy(cursor, &outline.right, sizeof(outline.right)); |
| 663 | cursor += sizeof(outline.right); |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 664 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 665 | memcpy(cursor, &outline.bottom, sizeof(outline.bottom)); |
| 666 | cursor += sizeof(outline.bottom); |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 667 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 668 | *((float*)cursor) = outline_radius; |
| 669 | cursor += sizeof(outline_radius); |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 670 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 671 | *((uint32_t*)cursor) = outline_alpha; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 672 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 673 | *out_len = chunk_len; |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 674 | return buffer; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 675 | } |
| 676 | |
| 677 | ::std::ostream& operator<<(::std::ostream& out, const Range& range) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 678 | return out << "[" << range.start << ", " << range.end << ")"; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 679 | } |
| 680 | |
| 681 | ::std::ostream& operator<<(::std::ostream& out, const Bounds& bounds) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 682 | return out << "l=" << bounds.left << " t=" << bounds.top |
| 683 | << " r=" << bounds.right << " b=" << bounds.bottom; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 684 | } |
| 685 | |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 686 | ::std::ostream& operator<<(::std::ostream& out, const NinePatch& nine_patch) { |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 687 | return out << "horizontalStretch:" |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 688 | << util::Joiner(nine_patch.horizontal_stretch_regions, " ") |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 689 | << " verticalStretch:" |
Adam Lesinski | ce5e56e | 2016-10-21 17:56:45 -0700 | [diff] [blame^] | 690 | << util::Joiner(nine_patch.vertical_stretch_regions, " ") |
| 691 | << " padding: " << nine_patch.padding |
| 692 | << ", bounds: " << nine_patch.layout_bounds |
| 693 | << ", outline: " << nine_patch.outline |
| 694 | << " rad=" << nine_patch.outline_radius |
| 695 | << " alpha=" << nine_patch.outline_alpha; |
Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame] | 696 | } |
| 697 | |
Adam Lesinski | cacb28f | 2016-10-19 12:18:14 -0700 | [diff] [blame] | 698 | } // namespace aapt |