blob: 5e478927734090b5bac38f6a9006b66e19411aa9 [file] [log] [blame]
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001/*
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
17#include <stdlib.h>
Elliott Hughescd3c55a2015-01-29 20:50:08 -080018#include <string.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080019#include <unistd.h>
20
21#include <fcntl.h>
22#include <stdio.h>
23
24#include <sys/ioctl.h>
25#include <sys/mman.h>
26#include <sys/types.h>
27
28#include <linux/fb.h>
29#include <linux/kd.h>
30
Doug Zongker19faefa2009-03-27 17:06:24 -070031#include <png.h>
32
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080033#include "minui.h"
34
Doug Zongker02ec6b82012-08-22 17:26:40 -070035extern char* locale;
36
Doug Zongker16f97c32014-03-06 16:16:05 -080037#define SURFACE_DATA_ALIGNMENT 8
38
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -070039static GRSurface* malloc_surface(size_t data_size) {
Elliott Hughes07cfb8f2015-04-10 13:12:05 -070040 size_t size = sizeof(GRSurface) + data_size + SURFACE_DATA_ALIGNMENT;
41 unsigned char* temp = reinterpret_cast<unsigned char*>(malloc(size));
Doug Zongker16f97c32014-03-06 16:16:05 -080042 if (temp == NULL) return NULL;
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -070043 GRSurface* surface = reinterpret_cast<GRSurface*>(temp);
Doug Zongker16f97c32014-03-06 16:16:05 -080044 surface->data = temp + sizeof(GRSurface) +
45 (SURFACE_DATA_ALIGNMENT - (sizeof(GRSurface) % SURFACE_DATA_ALIGNMENT));
46 return surface;
Doug Zongker19faefa2009-03-27 17:06:24 -070047}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080048
Doug Zongkera418aa72014-03-17 12:10:02 -070049static int open_png(const char* name, png_structp* png_ptr, png_infop* info_ptr,
50 png_uint_32* width, png_uint_32* height, png_byte* channels) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080051 char resPath[256];
Doug Zongker19faefa2009-03-27 17:06:24 -070052 unsigned char header[8];
Doug Zongkera418aa72014-03-17 12:10:02 -070053 int result = 0;
Elliott Hughes07cfb8f2015-04-10 13:12:05 -070054 int color_type, bit_depth;
55 size_t bytesRead;
Doug Zongker6809c512011-03-01 14:04:34 -080056
Doug Zongker19faefa2009-03-27 17:06:24 -070057 snprintf(resPath, sizeof(resPath)-1, "/res/images/%s.png", name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080058 resPath[sizeof(resPath)-1] = '\0';
Doug Zongker19faefa2009-03-27 17:06:24 -070059 FILE* fp = fopen(resPath, "rb");
60 if (fp == NULL) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080061 result = -1;
62 goto exit;
63 }
Doug Zongker19faefa2009-03-27 17:06:24 -070064
Elliott Hughes07cfb8f2015-04-10 13:12:05 -070065 bytesRead = fread(header, 1, sizeof(header), fp);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080066 if (bytesRead != sizeof(header)) {
67 result = -2;
68 goto exit;
69 }
Doug Zongker19faefa2009-03-27 17:06:24 -070070
71 if (png_sig_cmp(header, 0, sizeof(header))) {
72 result = -3;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080073 goto exit;
74 }
Doug Zongker19faefa2009-03-27 17:06:24 -070075
Doug Zongkera418aa72014-03-17 12:10:02 -070076 *png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
77 if (!*png_ptr) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080078 result = -4;
79 goto exit;
80 }
Doug Zongker19faefa2009-03-27 17:06:24 -070081
Doug Zongkera418aa72014-03-17 12:10:02 -070082 *info_ptr = png_create_info_struct(*png_ptr);
83 if (!*info_ptr) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080084 result = -5;
85 goto exit;
86 }
Doug Zongker19faefa2009-03-27 17:06:24 -070087
Doug Zongkera418aa72014-03-17 12:10:02 -070088 if (setjmp(png_jmpbuf(*png_ptr))) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080089 result = -6;
90 goto exit;
91 }
Doug Zongker19faefa2009-03-27 17:06:24 -070092
Doug Zongkera418aa72014-03-17 12:10:02 -070093 png_init_io(*png_ptr, fp);
94 png_set_sig_bytes(*png_ptr, sizeof(header));
95 png_read_info(*png_ptr, *info_ptr);
Doug Zongker19faefa2009-03-27 17:06:24 -070096
Doug Zongkera418aa72014-03-17 12:10:02 -070097 png_get_IHDR(*png_ptr, *info_ptr, width, height, &bit_depth,
John Reck94fd07b2013-08-26 16:45:33 -070098 &color_type, NULL, NULL, NULL);
99
Doug Zongkera418aa72014-03-17 12:10:02 -0700100 *channels = png_get_channels(*png_ptr, *info_ptr);
John Reck94fd07b2013-08-26 16:45:33 -0700101
Doug Zongkera418aa72014-03-17 12:10:02 -0700102 if (bit_depth == 8 && *channels == 3 && color_type == PNG_COLOR_TYPE_RGB) {
103 // 8-bit RGB images: great, nothing to do.
104 } else if (bit_depth <= 8 && *channels == 1 && color_type == PNG_COLOR_TYPE_GRAY) {
105 // 1-, 2-, 4-, or 8-bit gray images: expand to 8-bit gray.
106 png_set_expand_gray_1_2_4_to_8(*png_ptr);
Doug Zongker577a1302014-03-20 08:27:01 -0700107 } else if (bit_depth <= 8 && *channels == 1 && color_type == PNG_COLOR_TYPE_PALETTE) {
Doug Zongkera418aa72014-03-17 12:10:02 -0700108 // paletted images: expand to 8-bit RGB. Note that we DON'T
109 // currently expand the tRNS chunk (if any) to an alpha
110 // channel, because minui doesn't support alpha channels in
111 // general.
112 png_set_palette_to_rgb(*png_ptr);
113 *channels = 3;
114 } else {
115 fprintf(stderr, "minui doesn't support PNG depth %d channels %d color_type %d\n",
Doug Zongkera388a762014-03-17 16:51:47 -0700116 bit_depth, *channels, color_type);
Doug Zongkera418aa72014-03-17 12:10:02 -0700117 result = -7;
Doug Zongker19faefa2009-03-27 17:06:24 -0700118 goto exit;
119 }
120
Doug Zongkera418aa72014-03-17 12:10:02 -0700121 return result;
Doug Zongker55a36ac2013-03-04 15:49:02 -0800122
Doug Zongkera418aa72014-03-17 12:10:02 -0700123 exit:
124 if (result < 0) {
125 png_destroy_read_struct(png_ptr, info_ptr, NULL);
126 }
127 if (fp != NULL) {
128 fclose(fp);
129 }
130
131 return result;
132}
133
134// "display" surfaces are transformed into the framebuffer's required
135// pixel format (currently only RGBX is supported) at load time, so
136// gr_blit() can be nothing more than a memcpy() for each row. The
137// next two functions are the only ones that know anything about the
138// framebuffer pixel format; they need to be modified if the
139// framebuffer format changes (but nothing else should).
140
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700141// Allocate and return a GRSurface* sufficient for storing an image of
Doug Zongkera418aa72014-03-17 12:10:02 -0700142// the indicated size in the framebuffer pixel format.
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700143static GRSurface* init_display_surface(png_uint_32 width, png_uint_32 height) {
144 GRSurface* surface = malloc_surface(width * height * 4);
Doug Zongkera418aa72014-03-17 12:10:02 -0700145 if (surface == NULL) return NULL;
146
147 surface->width = width;
148 surface->height = height;
149 surface->row_bytes = width * 4;
150 surface->pixel_bytes = 4;
151
152 return surface;
153}
154
155// Copy 'input_row' to 'output_row', transforming it to the
156// framebuffer pixel format. The input format depends on the value of
157// 'channels':
158//
159// 1 - input is 8-bit grayscale
160// 3 - input is 24-bit RGB
161// 4 - input is 32-bit RGBA/RGBX
162//
163// 'width' is the number of pixels in the row.
164static void transform_rgb_to_draw(unsigned char* input_row,
165 unsigned char* output_row,
166 int channels, int width) {
167 int x;
168 unsigned char* ip = input_row;
169 unsigned char* op = output_row;
170
171 switch (channels) {
172 case 1:
173 // expand gray level to RGBX
174 for (x = 0; x < width; ++x) {
175 *op++ = *ip;
176 *op++ = *ip;
177 *op++ = *ip;
178 *op++ = 0xff;
179 ip++;
180 }
181 break;
182
183 case 3:
184 // expand RGBA to RGBX
185 for (x = 0; x < width; ++x) {
186 *op++ = *ip++;
187 *op++ = *ip++;
188 *op++ = *ip++;
189 *op++ = 0xff;
190 }
191 break;
192
193 case 4:
194 // copy RGBA to RGBX
195 memcpy(output_row, input_row, width*4);
196 break;
197 }
198}
199
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700200int res_create_display_surface(const char* name, GRSurface** pSurface) {
201 GRSurface* surface = NULL;
Doug Zongkera418aa72014-03-17 12:10:02 -0700202 int result = 0;
203 png_structp png_ptr = NULL;
204 png_infop info_ptr = NULL;
205 png_uint_32 width, height;
206 png_byte channels;
Elliott Hughes07cfb8f2015-04-10 13:12:05 -0700207 unsigned char* p_row;
208 unsigned int y;
Doug Zongkera418aa72014-03-17 12:10:02 -0700209
210 *pSurface = NULL;
211
212 result = open_png(name, &png_ptr, &info_ptr, &width, &height, &channels);
213 if (result < 0) return result;
214
215 surface = init_display_surface(width, height);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800216 if (surface == NULL) {
Doug Zongker19faefa2009-03-27 17:06:24 -0700217 result = -8;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800218 goto exit;
219 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800220
Tony Kuofd778e32015-02-05 21:25:56 +0800221#if defined(RECOVERY_ABGR) || defined(RECOVERY_BGRA)
222 png_set_bgr(png_ptr);
223#endif
224
Elliott Hughes07cfb8f2015-04-10 13:12:05 -0700225 p_row = reinterpret_cast<unsigned char*>(malloc(width * 4));
Doug Zongkera418aa72014-03-17 12:10:02 -0700226 for (y = 0; y < height; ++y) {
227 png_read_row(png_ptr, p_row, NULL);
228 transform_rgb_to_draw(p_row, surface->data + y * surface->row_bytes, channels, width);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800229 }
Doug Zongkera418aa72014-03-17 12:10:02 -0700230 free(p_row);
Doug Zongker19faefa2009-03-27 17:06:24 -0700231
Doug Zongkera418aa72014-03-17 12:10:02 -0700232 *pSurface = surface;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800233
Doug Zongkera418aa72014-03-17 12:10:02 -0700234 exit:
Doug Zongker19faefa2009-03-27 17:06:24 -0700235 png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
Doug Zongkera418aa72014-03-17 12:10:02 -0700236 if (result < 0 && surface != NULL) free(surface);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800237 return result;
238}
239
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700240int res_create_multi_display_surface(const char* name, int* frames, GRSurface*** pSurface) {
241 GRSurface** surface = NULL;
Doug Zongker469954f2014-03-07 09:21:25 -0800242 int result = 0;
Doug Zongker469954f2014-03-07 09:21:25 -0800243 png_structp png_ptr = NULL;
244 png_infop info_ptr = NULL;
Doug Zongkera418aa72014-03-17 12:10:02 -0700245 png_uint_32 width, height;
246 png_byte channels;
Doug Zongker469954f2014-03-07 09:21:25 -0800247 int i;
Elliott Hughes07cfb8f2015-04-10 13:12:05 -0700248 png_textp text;
249 int num_text;
250 unsigned char* p_row;
251 unsigned int y;
Doug Zongker469954f2014-03-07 09:21:25 -0800252
253 *pSurface = NULL;
254 *frames = -1;
255
Doug Zongkera418aa72014-03-17 12:10:02 -0700256 result = open_png(name, &png_ptr, &info_ptr, &width, &height, &channels);
257 if (result < 0) return result;
Doug Zongker469954f2014-03-07 09:21:25 -0800258
259 *frames = 1;
Doug Zongker469954f2014-03-07 09:21:25 -0800260 if (png_get_text(png_ptr, info_ptr, &text, &num_text)) {
261 for (i = 0; i < num_text; ++i) {
262 if (text[i].key && strcmp(text[i].key, "Frames") == 0 && text[i].text) {
263 *frames = atoi(text[i].text);
264 break;
265 }
266 }
267 printf(" found frames = %d\n", *frames);
268 }
269
270 if (height % *frames != 0) {
271 printf("bad height (%d) for frame count (%d)\n", height, *frames);
272 result = -9;
273 goto exit;
274 }
275
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700276 surface = reinterpret_cast<GRSurface**>(malloc(*frames * sizeof(GRSurface*)));
Doug Zongker469954f2014-03-07 09:21:25 -0800277 if (surface == NULL) {
278 result = -8;
279 goto exit;
280 }
281 for (i = 0; i < *frames; ++i) {
Doug Zongkera418aa72014-03-17 12:10:02 -0700282 surface[i] = init_display_surface(width, height / *frames);
283 if (surface[i] == NULL) {
284 result = -8;
285 goto exit;
Doug Zongker469954f2014-03-07 09:21:25 -0800286 }
287 }
288
Tony Kuofd778e32015-02-05 21:25:56 +0800289#if defined(RECOVERY_ABGR) || defined(RECOVERY_BGRA)
290 png_set_bgr(png_ptr);
291#endif
292
Elliott Hughes07cfb8f2015-04-10 13:12:05 -0700293 p_row = reinterpret_cast<unsigned char*>(malloc(width * 4));
Doug Zongkera418aa72014-03-17 12:10:02 -0700294 for (y = 0; y < height; ++y) {
295 png_read_row(png_ptr, p_row, NULL);
296 int frame = y % *frames;
297 unsigned char* out_row = surface[frame]->data +
298 (y / *frames) * surface[frame]->row_bytes;
299 transform_rgb_to_draw(p_row, out_row, channels, width);
300 }
301 free(p_row);
302
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700303 *pSurface = reinterpret_cast<GRSurface**>(surface);
Doug Zongker469954f2014-03-07 09:21:25 -0800304
305exit:
306 png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
307
Doug Zongker469954f2014-03-07 09:21:25 -0800308 if (result < 0) {
309 if (surface) {
310 for (i = 0; i < *frames; ++i) {
311 if (surface[i]) free(surface[i]);
312 }
313 free(surface);
314 }
315 }
316 return result;
317}
318
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700319int res_create_alpha_surface(const char* name, GRSurface** pSurface) {
320 GRSurface* surface = NULL;
Doug Zongkera418aa72014-03-17 12:10:02 -0700321 int result = 0;
322 png_structp png_ptr = NULL;
323 png_infop info_ptr = NULL;
324 png_uint_32 width, height;
325 png_byte channels;
326
327 *pSurface = NULL;
328
329 result = open_png(name, &png_ptr, &info_ptr, &width, &height, &channels);
330 if (result < 0) return result;
331
332 if (channels != 1) {
333 result = -7;
334 goto exit;
335 }
336
337 surface = malloc_surface(width * height);
338 if (surface == NULL) {
339 result = -8;
340 goto exit;
341 }
342 surface->width = width;
343 surface->height = height;
344 surface->row_bytes = width;
345 surface->pixel_bytes = 1;
346
Tony Kuofd778e32015-02-05 21:25:56 +0800347#if defined(RECOVERY_ABGR) || defined(RECOVERY_BGRA)
348 png_set_bgr(png_ptr);
349#endif
350
Doug Zongkera418aa72014-03-17 12:10:02 -0700351 unsigned char* p_row;
352 unsigned int y;
353 for (y = 0; y < height; ++y) {
354 p_row = surface->data + y * surface->row_bytes;
355 png_read_row(png_ptr, p_row, NULL);
356 }
357
358 *pSurface = surface;
359
360 exit:
361 png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
362 if (result < 0 && surface != NULL) free(surface);
363 return result;
364}
365
366static int matches_locale(const char* loc, const char* locale) {
Doug Zongker02ec6b82012-08-22 17:26:40 -0700367 if (locale == NULL) return 0;
368
Doug Zongker02ec6b82012-08-22 17:26:40 -0700369 if (strcmp(loc, locale) == 0) return 1;
370
371 // if loc does *not* have an underscore, and it matches the start
372 // of locale, and the next character in locale *is* an underscore,
373 // that's a match. For instance, loc == "en" matches locale ==
374 // "en_US".
375
376 int i;
377 for (i = 0; loc[i] != 0 && loc[i] != '_'; ++i);
378 if (loc[i] == '_') return 0;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700379
380 return (strncmp(locale, loc, i) == 0 && locale[i] == '_');
381}
382
Doug Zongkera418aa72014-03-17 12:10:02 -0700383int res_create_localized_alpha_surface(const char* name,
384 const char* locale,
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700385 GRSurface** pSurface) {
386 GRSurface* surface = NULL;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700387 int result = 0;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700388 png_structp png_ptr = NULL;
389 png_infop info_ptr = NULL;
Doug Zongkera418aa72014-03-17 12:10:02 -0700390 png_uint_32 width, height;
391 png_byte channels;
Elliott Hughes07cfb8f2015-04-10 13:12:05 -0700392 unsigned char* row;
393 png_uint_32 y;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700394
395 *pSurface = NULL;
396
Doug Zongkera418aa72014-03-17 12:10:02 -0700397 if (locale == NULL) {
398 surface = malloc_surface(0);
399 surface->width = 0;
400 surface->height = 0;
401 surface->row_bytes = 0;
402 surface->pixel_bytes = 1;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700403 goto exit;
404 }
405
Doug Zongkera418aa72014-03-17 12:10:02 -0700406 result = open_png(name, &png_ptr, &info_ptr, &width, &height, &channels);
407 if (result < 0) return result;
408
409 if (channels != 1) {
410 result = -7;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700411 goto exit;
412 }
413
Elliott Hughes07cfb8f2015-04-10 13:12:05 -0700414 row = reinterpret_cast<unsigned char*>(malloc(width));
Doug Zongker02ec6b82012-08-22 17:26:40 -0700415 for (y = 0; y < height; ++y) {
416 png_read_row(png_ptr, row, NULL);
417 int w = (row[1] << 8) | row[0];
418 int h = (row[3] << 8) | row[2];
419 int len = row[4];
Doug Zongker469954f2014-03-07 09:21:25 -0800420 char* loc = (char*)row+5;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700421
Doug Zongkera418aa72014-03-17 12:10:02 -0700422 if (y+1+h >= height || matches_locale(loc, locale)) {
Doug Zongker52eeea4f2012-09-04 14:28:25 -0700423 printf(" %20s: %s (%d x %d @ %d)\n", name, loc, w, h, y);
424
Doug Zongker16f97c32014-03-06 16:16:05 -0800425 surface = malloc_surface(w*h);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700426 if (surface == NULL) {
427 result = -8;
428 goto exit;
429 }
Doug Zongker02ec6b82012-08-22 17:26:40 -0700430 surface->width = w;
431 surface->height = h;
Doug Zongker16f97c32014-03-06 16:16:05 -0800432 surface->row_bytes = w;
433 surface->pixel_bytes = 1;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700434
435 int i;
436 for (i = 0; i < h; ++i, ++y) {
437 png_read_row(png_ptr, row, NULL);
Doug Zongkera418aa72014-03-17 12:10:02 -0700438 memcpy(surface->data + i*w, row, w);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700439 }
440
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700441 *pSurface = reinterpret_cast<GRSurface*>(surface);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700442 break;
443 } else {
Doug Zongker02ec6b82012-08-22 17:26:40 -0700444 int i;
445 for (i = 0; i < h; ++i, ++y) {
446 png_read_row(png_ptr, row, NULL);
447 }
448 }
449 }
450
451exit:
452 png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
Doug Zongkera418aa72014-03-17 12:10:02 -0700453 if (result < 0 && surface != NULL) free(surface);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700454 return result;
455}
456
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700457void res_free_surface(GRSurface* surface) {
Doug Zongker16f97c32014-03-06 16:16:05 -0800458 free(surface);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800459}