The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 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 | |
Tao Bao | 3d0cd1d | 2018-04-13 13:41:58 -0700 | [diff] [blame] | 17 | #include "private/resources.h" |
| 18 | |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 19 | #include <fcntl.h> |
| 20 | #include <linux/fb.h> |
| 21 | #include <linux/kd.h> |
| 22 | #include <stdio.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 23 | #include <stdlib.h> |
Elliott Hughes | cd3c55a | 2015-01-29 20:50:08 -0800 | [diff] [blame] | 24 | #include <string.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 25 | #include <sys/ioctl.h> |
| 26 | #include <sys/mman.h> |
| 27 | #include <sys/types.h> |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 28 | #include <unistd.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 29 | |
Tao Bao | dd78982 | 2018-11-26 16:28:07 -0800 | [diff] [blame] | 30 | #include <limits> |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 31 | #include <memory> |
Tianjie Xu | 2078b22 | 2017-03-22 12:27:26 -0700 | [diff] [blame] | 32 | #include <regex> |
| 33 | #include <string> |
Yabin Cui | 4425c1d | 2016-02-10 13:47:32 -0800 | [diff] [blame] | 34 | #include <vector> |
Tao Bao | 0b1118d | 2017-01-14 07:46:10 -0800 | [diff] [blame] | 35 | |
Tianjie Xu | 2078b22 | 2017-03-22 12:27:26 -0700 | [diff] [blame] | 36 | #include <android-base/strings.h> |
Doug Zongker | 19faefa | 2009-03-27 17:06:24 -0700 | [diff] [blame] | 37 | #include <png.h> |
| 38 | |
Tao Bao | 0ecbd76 | 2017-01-16 21:16:58 -0800 | [diff] [blame] | 39 | #include "minui/minui.h" |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 40 | |
Tao Bao | 6cd8168 | 2018-05-03 21:53:11 -0700 | [diff] [blame] | 41 | static std::string g_resource_dir{ "/res/images" }; |
| 42 | |
Tao Bao | dd78982 | 2018-11-26 16:28:07 -0800 | [diff] [blame] | 43 | std::unique_ptr<GRSurface> GRSurface::Create(size_t width, size_t height, size_t row_bytes, |
| 44 | size_t pixel_bytes) { |
| 45 | if (width == 0 || row_bytes == 0 || height == 0 || pixel_bytes == 0) return nullptr; |
| 46 | if (std::numeric_limits<size_t>::max() / row_bytes < height) return nullptr; |
| 47 | |
Tao Bao | 44820ac | 2018-10-30 23:34:50 -0700 | [diff] [blame] | 48 | // Cannot use std::make_unique to access non-public ctor. |
| 49 | auto result = std::unique_ptr<GRSurface>(new GRSurface(width, height, row_bytes, pixel_bytes)); |
Tao Bao | dd78982 | 2018-11-26 16:28:07 -0800 | [diff] [blame] | 50 | size_t data_size = row_bytes * height; |
Tao Bao | 63b59dc | 2018-10-31 15:23:04 -0700 | [diff] [blame] | 51 | result->data_size_ = |
Tao Bao | 92bdb5a | 2018-10-21 12:12:37 -0700 | [diff] [blame] | 52 | (data_size + kSurfaceDataAlignment - 1) / kSurfaceDataAlignment * kSurfaceDataAlignment; |
Tao Bao | 9cf163e | 2018-11-07 10:15:50 -0800 | [diff] [blame] | 53 | result->data_.reset( |
| 54 | static_cast<uint8_t*>(aligned_alloc(kSurfaceDataAlignment, result->data_size_))); |
| 55 | if (!result->data_) return nullptr; |
Tao Bao | 92bdb5a | 2018-10-21 12:12:37 -0700 | [diff] [blame] | 56 | return result; |
| 57 | } |
| 58 | |
Tao Bao | 63b59dc | 2018-10-31 15:23:04 -0700 | [diff] [blame] | 59 | std::unique_ptr<GRSurface> GRSurface::Clone() const { |
Tao Bao | dd78982 | 2018-11-26 16:28:07 -0800 | [diff] [blame] | 60 | auto result = GRSurface::Create(width, height, row_bytes, pixel_bytes); |
Tao Bao | 9cf163e | 2018-11-07 10:15:50 -0800 | [diff] [blame] | 61 | if (!result) return nullptr; |
| 62 | memcpy(result->data(), data(), data_size_); |
Tao Bao | 63b59dc | 2018-10-31 15:23:04 -0700 | [diff] [blame] | 63 | return result; |
| 64 | } |
| 65 | |
Tao Bao | 3d0cd1d | 2018-04-13 13:41:58 -0700 | [diff] [blame] | 66 | PngHandler::PngHandler(const std::string& name) { |
Tao Bao | 6cd8168 | 2018-05-03 21:53:11 -0700 | [diff] [blame] | 67 | std::string res_path = g_resource_dir + "/" + name + ".png"; |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 68 | png_fp_.reset(fopen(res_path.c_str(), "rbe")); |
Tao Bao | 3d0cd1d | 2018-04-13 13:41:58 -0700 | [diff] [blame] | 69 | // Try to read from |name| if the resource path does not work. |
| 70 | if (!png_fp_) { |
| 71 | png_fp_.reset(fopen(name.c_str(), "rbe")); |
| 72 | } |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 73 | if (!png_fp_) { |
| 74 | error_code_ = -1; |
| 75 | return; |
| 76 | } |
Doug Zongker | 55a36ac | 2013-03-04 15:49:02 -0800 | [diff] [blame] | 77 | |
Tao Bao | 44820ac | 2018-10-30 23:34:50 -0700 | [diff] [blame] | 78 | uint8_t header[8]; |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 79 | size_t bytesRead = fread(header, 1, sizeof(header), png_fp_.get()); |
| 80 | if (bytesRead != sizeof(header)) { |
| 81 | error_code_ = -2; |
| 82 | return; |
| 83 | } |
Doug Zongker | a418aa7 | 2014-03-17 12:10:02 -0700 | [diff] [blame] | 84 | |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 85 | if (png_sig_cmp(header, 0, sizeof(header))) { |
| 86 | error_code_ = -3; |
| 87 | return; |
| 88 | } |
| 89 | |
| 90 | png_ptr_ = png_create_read_struct(PNG_LIBPNG_VER_STRING, nullptr, nullptr, nullptr); |
| 91 | if (!png_ptr_) { |
| 92 | error_code_ = -4; |
| 93 | return; |
| 94 | } |
| 95 | |
| 96 | info_ptr_ = png_create_info_struct(png_ptr_); |
| 97 | if (!info_ptr_) { |
| 98 | error_code_ = -5; |
| 99 | return; |
| 100 | } |
| 101 | |
| 102 | if (setjmp(png_jmpbuf(png_ptr_))) { |
| 103 | error_code_ = -6; |
| 104 | return; |
| 105 | } |
| 106 | |
| 107 | png_init_io(png_ptr_, png_fp_.get()); |
| 108 | png_set_sig_bytes(png_ptr_, sizeof(header)); |
| 109 | png_read_info(png_ptr_, info_ptr_); |
| 110 | |
Tao Bao | 3d0cd1d | 2018-04-13 13:41:58 -0700 | [diff] [blame] | 111 | png_get_IHDR(png_ptr_, info_ptr_, &width_, &height_, &bit_depth_, &color_type_, nullptr, nullptr, |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 112 | nullptr); |
| 113 | |
| 114 | channels_ = png_get_channels(png_ptr_, info_ptr_); |
| 115 | |
Tao Bao | 3d0cd1d | 2018-04-13 13:41:58 -0700 | [diff] [blame] | 116 | if (bit_depth_ == 8 && channels_ == 3 && color_type_ == PNG_COLOR_TYPE_RGB) { |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 117 | // 8-bit RGB images: great, nothing to do. |
Tao Bao | 3d0cd1d | 2018-04-13 13:41:58 -0700 | [diff] [blame] | 118 | } else if (bit_depth_ <= 8 && channels_ == 1 && color_type_ == PNG_COLOR_TYPE_GRAY) { |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 119 | // 1-, 2-, 4-, or 8-bit gray images: expand to 8-bit gray. |
| 120 | png_set_expand_gray_1_2_4_to_8(png_ptr_); |
Tao Bao | 3d0cd1d | 2018-04-13 13:41:58 -0700 | [diff] [blame] | 121 | } else if (bit_depth_ <= 8 && channels_ == 1 && color_type_ == PNG_COLOR_TYPE_PALETTE) { |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 122 | // paletted images: expand to 8-bit RGB. Note that we DON'T |
| 123 | // currently expand the tRNS chunk (if any) to an alpha |
| 124 | // channel, because minui doesn't support alpha channels in |
| 125 | // general. |
| 126 | png_set_palette_to_rgb(png_ptr_); |
| 127 | channels_ = 3; |
| 128 | } else { |
Tao Bao | 3d0cd1d | 2018-04-13 13:41:58 -0700 | [diff] [blame] | 129 | fprintf(stderr, "minui doesn't support PNG depth %d channels %d color_type %d\n", bit_depth_, |
| 130 | channels_, color_type_); |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 131 | error_code_ = -7; |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | PngHandler::~PngHandler() { |
| 136 | if (png_ptr_) { |
| 137 | png_destroy_read_struct(&png_ptr_, &info_ptr_, nullptr); |
| 138 | } |
Doug Zongker | a418aa7 | 2014-03-17 12:10:02 -0700 | [diff] [blame] | 139 | } |
| 140 | |
Tao Bao | 44820ac | 2018-10-30 23:34:50 -0700 | [diff] [blame] | 141 | // "display" surfaces are transformed into the framebuffer's required pixel format (currently only |
| 142 | // RGBX is supported) at load time, so gr_blit() can be nothing more than a memcpy() for each row. |
Doug Zongker | a418aa7 | 2014-03-17 12:10:02 -0700 | [diff] [blame] | 143 | |
Tao Bao | 44820ac | 2018-10-30 23:34:50 -0700 | [diff] [blame] | 144 | // Copies 'input_row' to 'output_row', transforming it to the framebuffer pixel format. The input |
| 145 | // format depends on the value of 'channels': |
Doug Zongker | a418aa7 | 2014-03-17 12:10:02 -0700 | [diff] [blame] | 146 | // |
| 147 | // 1 - input is 8-bit grayscale |
| 148 | // 3 - input is 24-bit RGB |
| 149 | // 4 - input is 32-bit RGBA/RGBX |
| 150 | // |
| 151 | // 'width' is the number of pixels in the row. |
Tao Bao | 44820ac | 2018-10-30 23:34:50 -0700 | [diff] [blame] | 152 | static void TransformRgbToDraw(const uint8_t* input_row, uint8_t* output_row, int channels, |
| 153 | int width) { |
| 154 | const uint8_t* ip = input_row; |
| 155 | uint8_t* op = output_row; |
Doug Zongker | a418aa7 | 2014-03-17 12:10:02 -0700 | [diff] [blame] | 156 | |
Tao Bao | 44820ac | 2018-10-30 23:34:50 -0700 | [diff] [blame] | 157 | switch (channels) { |
| 158 | case 1: |
| 159 | // expand gray level to RGBX |
| 160 | for (int x = 0; x < width; ++x) { |
| 161 | *op++ = *ip; |
| 162 | *op++ = *ip; |
| 163 | *op++ = *ip; |
| 164 | *op++ = 0xff; |
| 165 | ip++; |
| 166 | } |
| 167 | break; |
Doug Zongker | a418aa7 | 2014-03-17 12:10:02 -0700 | [diff] [blame] | 168 | |
Tao Bao | 44820ac | 2018-10-30 23:34:50 -0700 | [diff] [blame] | 169 | case 3: |
| 170 | // expand RGBA to RGBX |
| 171 | for (int x = 0; x < width; ++x) { |
| 172 | *op++ = *ip++; |
| 173 | *op++ = *ip++; |
| 174 | *op++ = *ip++; |
| 175 | *op++ = 0xff; |
| 176 | } |
| 177 | break; |
Doug Zongker | a418aa7 | 2014-03-17 12:10:02 -0700 | [diff] [blame] | 178 | |
Tao Bao | 44820ac | 2018-10-30 23:34:50 -0700 | [diff] [blame] | 179 | case 4: |
| 180 | // copy RGBA to RGBX |
| 181 | memcpy(output_row, input_row, width * 4); |
| 182 | break; |
| 183 | } |
Doug Zongker | a418aa7 | 2014-03-17 12:10:02 -0700 | [diff] [blame] | 184 | } |
| 185 | |
Elliott Hughes | 0a5cb0c | 2015-04-15 10:58:56 -0700 | [diff] [blame] | 186 | int res_create_display_surface(const char* name, GRSurface** pSurface) { |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 187 | *pSurface = nullptr; |
Doug Zongker | a418aa7 | 2014-03-17 12:10:02 -0700 | [diff] [blame] | 188 | |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 189 | PngHandler png_handler(name); |
| 190 | if (!png_handler) return png_handler.error_code(); |
Doug Zongker | a418aa7 | 2014-03-17 12:10:02 -0700 | [diff] [blame] | 191 | |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 192 | png_structp png_ptr = png_handler.png_ptr(); |
| 193 | png_uint_32 width = png_handler.width(); |
| 194 | png_uint_32 height = png_handler.height(); |
Doug Zongker | a418aa7 | 2014-03-17 12:10:02 -0700 | [diff] [blame] | 195 | |
Tao Bao | dd78982 | 2018-11-26 16:28:07 -0800 | [diff] [blame] | 196 | auto surface = GRSurface::Create(width, height, width * 4, 4); |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 197 | if (!surface) { |
| 198 | return -8; |
| 199 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 200 | |
Tao Bao | ed876a7 | 2018-07-31 21:32:50 -0700 | [diff] [blame] | 201 | PixelFormat pixel_format = gr_pixel_format(); |
Adrian Salido | cc7b7eb | 2019-12-12 20:18:09 -0800 | [diff] [blame] | 202 | if (pixel_format == PixelFormat::ARGB || pixel_format == PixelFormat::BGRA) { |
Tao Bao | ed876a7 | 2018-07-31 21:32:50 -0700 | [diff] [blame] | 203 | png_set_bgr(png_ptr); |
| 204 | } |
Tony Kuo | fd778e3 | 2015-02-05 21:25:56 +0800 | [diff] [blame] | 205 | |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 206 | for (png_uint_32 y = 0; y < height; ++y) { |
Tao Bao | 44820ac | 2018-10-30 23:34:50 -0700 | [diff] [blame] | 207 | std::vector<uint8_t> p_row(width * 4); |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 208 | png_read_row(png_ptr, p_row.data(), nullptr); |
Tao Bao | 44820ac | 2018-10-30 23:34:50 -0700 | [diff] [blame] | 209 | TransformRgbToDraw(p_row.data(), surface->data() + y * surface->row_bytes, |
| 210 | png_handler.channels(), width); |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 211 | } |
Doug Zongker | 19faefa | 2009-03-27 17:06:24 -0700 | [diff] [blame] | 212 | |
Tao Bao | 92bdb5a | 2018-10-21 12:12:37 -0700 | [diff] [blame] | 213 | *pSurface = surface.release(); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 214 | |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 215 | return 0; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 216 | } |
| 217 | |
Tao Bao | b723f4f | 2015-12-11 15:18:51 -0800 | [diff] [blame] | 218 | int res_create_multi_display_surface(const char* name, int* frames, int* fps, |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 219 | GRSurface*** pSurface) { |
| 220 | *pSurface = nullptr; |
| 221 | *frames = -1; |
Doug Zongker | 469954f | 2014-03-07 09:21:25 -0800 | [diff] [blame] | 222 | |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 223 | PngHandler png_handler(name); |
| 224 | if (!png_handler) return png_handler.error_code(); |
Doug Zongker | 469954f | 2014-03-07 09:21:25 -0800 | [diff] [blame] | 225 | |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 226 | png_structp png_ptr = png_handler.png_ptr(); |
| 227 | png_uint_32 width = png_handler.width(); |
| 228 | png_uint_32 height = png_handler.height(); |
Doug Zongker | 469954f | 2014-03-07 09:21:25 -0800 | [diff] [blame] | 229 | |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 230 | *frames = 1; |
| 231 | *fps = 20; |
| 232 | png_textp text; |
| 233 | int num_text; |
| 234 | if (png_get_text(png_ptr, png_handler.info_ptr(), &text, &num_text)) { |
| 235 | for (int i = 0; i < num_text; ++i) { |
| 236 | if (text[i].key && strcmp(text[i].key, "Frames") == 0 && text[i].text) { |
| 237 | *frames = atoi(text[i].text); |
| 238 | } else if (text[i].key && strcmp(text[i].key, "FPS") == 0 && text[i].text) { |
| 239 | *fps = atoi(text[i].text); |
| 240 | } |
Tao Bao | b723f4f | 2015-12-11 15:18:51 -0800 | [diff] [blame] | 241 | } |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 242 | printf(" found frames = %d\n", *frames); |
| 243 | printf(" found fps = %d\n", *fps); |
| 244 | } |
Tao Bao | b723f4f | 2015-12-11 15:18:51 -0800 | [diff] [blame] | 245 | |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 246 | int result = 0; |
| 247 | GRSurface** surface = nullptr; |
| 248 | if (*frames <= 0 || *fps <= 0) { |
| 249 | printf("bad number of frames (%d) and/or FPS (%d)\n", *frames, *fps); |
| 250 | result = -10; |
| 251 | goto exit; |
| 252 | } |
Doug Zongker | 469954f | 2014-03-07 09:21:25 -0800 | [diff] [blame] | 253 | |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 254 | if (height % *frames != 0) { |
| 255 | printf("bad height (%d) for frame count (%d)\n", height, *frames); |
| 256 | result = -9; |
| 257 | goto exit; |
| 258 | } |
Doug Zongker | 469954f | 2014-03-07 09:21:25 -0800 | [diff] [blame] | 259 | |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 260 | surface = static_cast<GRSurface**>(calloc(*frames, sizeof(GRSurface*))); |
| 261 | if (!surface) { |
| 262 | result = -8; |
| 263 | goto exit; |
| 264 | } |
| 265 | for (int i = 0; i < *frames; ++i) { |
Tao Bao | dd78982 | 2018-11-26 16:28:07 -0800 | [diff] [blame] | 266 | auto created_surface = GRSurface::Create(width, height / *frames, width * 4, 4); |
Tao Bao | 92bdb5a | 2018-10-21 12:12:37 -0700 | [diff] [blame] | 267 | if (!created_surface) { |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 268 | result = -8; |
| 269 | goto exit; |
Doug Zongker | 469954f | 2014-03-07 09:21:25 -0800 | [diff] [blame] | 270 | } |
Tao Bao | 92bdb5a | 2018-10-21 12:12:37 -0700 | [diff] [blame] | 271 | surface[i] = created_surface.release(); |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 272 | } |
Doug Zongker | 469954f | 2014-03-07 09:21:25 -0800 | [diff] [blame] | 273 | |
Adrian Salido | cc7b7eb | 2019-12-12 20:18:09 -0800 | [diff] [blame] | 274 | if (gr_pixel_format() == PixelFormat::ARGB || gr_pixel_format() == PixelFormat::BGRA) { |
Tao Bao | ed876a7 | 2018-07-31 21:32:50 -0700 | [diff] [blame] | 275 | png_set_bgr(png_ptr); |
| 276 | } |
Tony Kuo | fd778e3 | 2015-02-05 21:25:56 +0800 | [diff] [blame] | 277 | |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 278 | for (png_uint_32 y = 0; y < height; ++y) { |
Tao Bao | 44820ac | 2018-10-30 23:34:50 -0700 | [diff] [blame] | 279 | std::vector<uint8_t> p_row(width * 4); |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 280 | png_read_row(png_ptr, p_row.data(), nullptr); |
| 281 | int frame = y % *frames; |
Tao Bao | 44820ac | 2018-10-30 23:34:50 -0700 | [diff] [blame] | 282 | uint8_t* out_row = surface[frame]->data() + (y / *frames) * surface[frame]->row_bytes; |
| 283 | TransformRgbToDraw(p_row.data(), out_row, png_handler.channels(), width); |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 284 | } |
Doug Zongker | a418aa7 | 2014-03-17 12:10:02 -0700 | [diff] [blame] | 285 | |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 286 | *pSurface = surface; |
Doug Zongker | 469954f | 2014-03-07 09:21:25 -0800 | [diff] [blame] | 287 | |
| 288 | exit: |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 289 | if (result < 0) { |
| 290 | if (surface) { |
| 291 | for (int i = 0; i < *frames; ++i) { |
| 292 | free(surface[i]); |
| 293 | } |
| 294 | free(surface); |
Doug Zongker | 469954f | 2014-03-07 09:21:25 -0800 | [diff] [blame] | 295 | } |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 296 | } |
| 297 | return result; |
Doug Zongker | 469954f | 2014-03-07 09:21:25 -0800 | [diff] [blame] | 298 | } |
| 299 | |
Elliott Hughes | 0a5cb0c | 2015-04-15 10:58:56 -0700 | [diff] [blame] | 300 | int res_create_alpha_surface(const char* name, GRSurface** pSurface) { |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 301 | *pSurface = nullptr; |
Doug Zongker | a418aa7 | 2014-03-17 12:10:02 -0700 | [diff] [blame] | 302 | |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 303 | PngHandler png_handler(name); |
| 304 | if (!png_handler) return png_handler.error_code(); |
Doug Zongker | a418aa7 | 2014-03-17 12:10:02 -0700 | [diff] [blame] | 305 | |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 306 | if (png_handler.channels() != 1) { |
| 307 | return -7; |
| 308 | } |
Doug Zongker | a418aa7 | 2014-03-17 12:10:02 -0700 | [diff] [blame] | 309 | |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 310 | png_structp png_ptr = png_handler.png_ptr(); |
| 311 | png_uint_32 width = png_handler.width(); |
| 312 | png_uint_32 height = png_handler.height(); |
Doug Zongker | a418aa7 | 2014-03-17 12:10:02 -0700 | [diff] [blame] | 313 | |
Tao Bao | dd78982 | 2018-11-26 16:28:07 -0800 | [diff] [blame] | 314 | auto surface = GRSurface::Create(width, height, width, 1); |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 315 | if (!surface) { |
| 316 | return -8; |
| 317 | } |
Doug Zongker | a418aa7 | 2014-03-17 12:10:02 -0700 | [diff] [blame] | 318 | |
Tao Bao | ed876a7 | 2018-07-31 21:32:50 -0700 | [diff] [blame] | 319 | PixelFormat pixel_format = gr_pixel_format(); |
Adrian Salido | cc7b7eb | 2019-12-12 20:18:09 -0800 | [diff] [blame] | 320 | if (pixel_format == PixelFormat::ARGB || pixel_format == PixelFormat::BGRA) { |
Tao Bao | ed876a7 | 2018-07-31 21:32:50 -0700 | [diff] [blame] | 321 | png_set_bgr(png_ptr); |
| 322 | } |
Tony Kuo | fd778e3 | 2015-02-05 21:25:56 +0800 | [diff] [blame] | 323 | |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 324 | for (png_uint_32 y = 0; y < height; ++y) { |
Tao Bao | 44820ac | 2018-10-30 23:34:50 -0700 | [diff] [blame] | 325 | uint8_t* p_row = surface->data() + y * surface->row_bytes; |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 326 | png_read_row(png_ptr, p_row, nullptr); |
| 327 | } |
Doug Zongker | a418aa7 | 2014-03-17 12:10:02 -0700 | [diff] [blame] | 328 | |
Tao Bao | 92bdb5a | 2018-10-21 12:12:37 -0700 | [diff] [blame] | 329 | *pSurface = surface.release(); |
Doug Zongker | a418aa7 | 2014-03-17 12:10:02 -0700 | [diff] [blame] | 330 | |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 331 | return 0; |
Doug Zongker | a418aa7 | 2014-03-17 12:10:02 -0700 | [diff] [blame] | 332 | } |
| 333 | |
Tao Bao | 6cd8168 | 2018-05-03 21:53:11 -0700 | [diff] [blame] | 334 | void res_set_resource_dir(const std::string& dirname) { |
| 335 | g_resource_dir = dirname; |
| 336 | } |
| 337 | |
Tianjie Xu | 2430e29 | 2016-04-19 15:02:41 -0700 | [diff] [blame] | 338 | // This function tests if a locale string stored in PNG (prefix) matches |
| 339 | // the locale string provided by the system (locale). |
Tianjie Xu | 2078b22 | 2017-03-22 12:27:26 -0700 | [diff] [blame] | 340 | bool matches_locale(const std::string& prefix, const std::string& locale) { |
| 341 | // According to the BCP 47 format, A locale string may consists of: |
| 342 | // language-{extlang}-{script}-{region}-{variant} |
| 343 | // The locale headers in PNG mostly consist of language-{region} except for sr-Latn, and some |
| 344 | // android's system locale can have the format language-{script}-{region}. |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 345 | |
Tianjie Xu | 2078b22 | 2017-03-22 12:27:26 -0700 | [diff] [blame] | 346 | // Return true if the whole string of prefix matches the top part of locale. Otherwise try to |
| 347 | // match the locale string without the {script} section. |
| 348 | // For instance, prefix == "en" matches locale == "en-US", prefix == "sr-Latn" matches locale |
| 349 | // == "sr-Latn-BA", and prefix == "zh-CN" matches locale == "zh-Hans-CN". |
xunchang | 3472308 | 2019-04-22 15:32:17 -0700 | [diff] [blame] | 350 | if (prefix.empty()) { |
| 351 | return false; |
| 352 | } |
| 353 | |
Elliott Hughes | 1d65c95 | 2017-12-20 12:36:31 -0800 | [diff] [blame] | 354 | if (android::base::StartsWith(locale, prefix)) { |
Tianjie Xu | 2078b22 | 2017-03-22 12:27:26 -0700 | [diff] [blame] | 355 | return true; |
| 356 | } |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 357 | |
Tianjie Xu | 2078b22 | 2017-03-22 12:27:26 -0700 | [diff] [blame] | 358 | size_t separator = prefix.find('-'); |
| 359 | if (separator == std::string::npos) { |
| 360 | return false; |
| 361 | } |
| 362 | std::regex loc_regex(prefix.substr(0, separator) + "-[A-Za-z]*" + prefix.substr(separator)); |
| 363 | return std::regex_match(locale, loc_regex); |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 364 | } |
| 365 | |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 366 | std::vector<std::string> get_locales_in_png(const std::string& png_name) { |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 367 | PngHandler png_handler(png_name); |
| 368 | if (!png_handler) { |
| 369 | printf("Failed to open %s, error: %d\n", png_name.c_str(), png_handler.error_code()); |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 370 | return {}; |
| 371 | } |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 372 | if (png_handler.channels() != 1) { |
| 373 | printf("Expect input png to have 1 data channel, this file has %d\n", png_handler.channels()); |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 374 | return {}; |
| 375 | } |
| 376 | |
| 377 | std::vector<std::string> result; |
Tao Bao | 44820ac | 2018-10-30 23:34:50 -0700 | [diff] [blame] | 378 | std::vector<uint8_t> row(png_handler.width()); |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 379 | for (png_uint_32 y = 0; y < png_handler.height(); ++y) { |
| 380 | png_read_row(png_handler.png_ptr(), row.data(), nullptr); |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 381 | int h = (row[3] << 8) | row[2]; |
| 382 | std::string loc(reinterpret_cast<char*>(&row[5])); |
| 383 | if (!loc.empty()) { |
| 384 | result.push_back(loc); |
| 385 | } |
| 386 | for (int i = 0; i < h; ++i, ++y) { |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 387 | png_read_row(png_handler.png_ptr(), row.data(), nullptr); |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 388 | } |
| 389 | } |
| 390 | |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 391 | return result; |
| 392 | } |
| 393 | |
Doug Zongker | a418aa7 | 2014-03-17 12:10:02 -0700 | [diff] [blame] | 394 | int res_create_localized_alpha_surface(const char* name, |
| 395 | const char* locale, |
Elliott Hughes | 0a5cb0c | 2015-04-15 10:58:56 -0700 | [diff] [blame] | 396 | GRSurface** pSurface) { |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 397 | *pSurface = nullptr; |
| 398 | if (locale == nullptr) { |
| 399 | return 0; |
| 400 | } |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 401 | |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 402 | PngHandler png_handler(name); |
| 403 | if (!png_handler) return png_handler.error_code(); |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 404 | |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 405 | if (png_handler.channels() != 1) { |
| 406 | return -7; |
| 407 | } |
| 408 | |
| 409 | png_structp png_ptr = png_handler.png_ptr(); |
| 410 | png_uint_32 width = png_handler.width(); |
| 411 | png_uint_32 height = png_handler.height(); |
| 412 | |
| 413 | for (png_uint_32 y = 0; y < height; ++y) { |
Tao Bao | 44820ac | 2018-10-30 23:34:50 -0700 | [diff] [blame] | 414 | std::vector<uint8_t> row(width); |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 415 | png_read_row(png_ptr, row.data(), nullptr); |
| 416 | int w = (row[1] << 8) | row[0]; |
| 417 | int h = (row[3] << 8) | row[2]; |
| 418 | __unused int len = row[4]; |
| 419 | char* loc = reinterpret_cast<char*>(&row[5]); |
| 420 | |
xunchang | 9d05c8a | 2019-04-16 12:07:42 -0700 | [diff] [blame] | 421 | // We need to include one additional line for the metadata of the localized image. |
| 422 | if (y + 1 + h > height) { |
| 423 | printf("Read exceeds the image boundary, y %u, h %d, height %u\n", y, h, height); |
| 424 | return -8; |
| 425 | } |
| 426 | |
| 427 | if (matches_locale(loc, locale)) { |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 428 | printf(" %20s: %s (%d x %d @ %d)\n", name, loc, w, h, y); |
| 429 | |
Tao Bao | dd78982 | 2018-11-26 16:28:07 -0800 | [diff] [blame] | 430 | auto surface = GRSurface::Create(w, h, w, 1); |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 431 | if (!surface) { |
xunchang | 9d05c8a | 2019-04-16 12:07:42 -0700 | [diff] [blame] | 432 | return -9; |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 433 | } |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 434 | |
| 435 | for (int i = 0; i < h; ++i, ++y) { |
| 436 | png_read_row(png_ptr, row.data(), nullptr); |
Tao Bao | 92bdb5a | 2018-10-21 12:12:37 -0700 | [diff] [blame] | 437 | memcpy(surface->data() + i * w, row.data(), w); |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 438 | } |
| 439 | |
Tao Bao | 92bdb5a | 2018-10-21 12:12:37 -0700 | [diff] [blame] | 440 | *pSurface = surface.release(); |
xunchang | 9d05c8a | 2019-04-16 12:07:42 -0700 | [diff] [blame] | 441 | return 0; |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 442 | } |
| 443 | |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 444 | for (int i = 0; i < h; ++i, ++y) { |
| 445 | png_read_row(png_ptr, row.data(), nullptr); |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 446 | } |
Tianjie Xu | acba38c | 2017-09-27 17:53:34 -0700 | [diff] [blame] | 447 | } |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 448 | |
xunchang | 9d05c8a | 2019-04-16 12:07:42 -0700 | [diff] [blame] | 449 | return -10; |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 450 | } |
| 451 | |
Elliott Hughes | 0a5cb0c | 2015-04-15 10:58:56 -0700 | [diff] [blame] | 452 | void res_free_surface(GRSurface* surface) { |
lijiazi | 7d306fb | 2020-12-23 19:21:06 +0800 | [diff] [blame] | 453 | delete(surface); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 454 | } |