blob: fa413b608b5770d1ea6ed057b921223d9c6d7efc [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
39static gr_surface 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;
43 gr_surface surface = (gr_surface) temp;
44 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
141// Allocate and return a gr_surface sufficient for storing an image of
142// the indicated size in the framebuffer pixel format.
143static gr_surface init_display_surface(png_uint_32 width, png_uint_32 height) {
144 gr_surface surface;
145
146 surface = malloc_surface(width * height * 4);
147 if (surface == NULL) return NULL;
148
149 surface->width = width;
150 surface->height = height;
151 surface->row_bytes = width * 4;
152 surface->pixel_bytes = 4;
153
154 return surface;
155}
156
157// Copy 'input_row' to 'output_row', transforming it to the
158// framebuffer pixel format. The input format depends on the value of
159// 'channels':
160//
161// 1 - input is 8-bit grayscale
162// 3 - input is 24-bit RGB
163// 4 - input is 32-bit RGBA/RGBX
164//
165// 'width' is the number of pixels in the row.
166static void transform_rgb_to_draw(unsigned char* input_row,
167 unsigned char* output_row,
168 int channels, int width) {
169 int x;
170 unsigned char* ip = input_row;
171 unsigned char* op = output_row;
172
173 switch (channels) {
174 case 1:
175 // expand gray level to RGBX
176 for (x = 0; x < width; ++x) {
177 *op++ = *ip;
178 *op++ = *ip;
179 *op++ = *ip;
180 *op++ = 0xff;
181 ip++;
182 }
183 break;
184
185 case 3:
186 // expand RGBA to RGBX
187 for (x = 0; x < width; ++x) {
188 *op++ = *ip++;
189 *op++ = *ip++;
190 *op++ = *ip++;
191 *op++ = 0xff;
192 }
193 break;
194
195 case 4:
196 // copy RGBA to RGBX
197 memcpy(output_row, input_row, width*4);
198 break;
199 }
200}
201
202int res_create_display_surface(const char* name, gr_surface* pSurface) {
203 gr_surface surface = NULL;
204 int result = 0;
205 png_structp png_ptr = NULL;
206 png_infop info_ptr = NULL;
207 png_uint_32 width, height;
208 png_byte channels;
Elliott Hughes07cfb8f2015-04-10 13:12:05 -0700209 unsigned char* p_row;
210 unsigned int y;
Doug Zongkera418aa72014-03-17 12:10:02 -0700211
212 *pSurface = NULL;
213
214 result = open_png(name, &png_ptr, &info_ptr, &width, &height, &channels);
215 if (result < 0) return result;
216
217 surface = init_display_surface(width, height);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800218 if (surface == NULL) {
Doug Zongker19faefa2009-03-27 17:06:24 -0700219 result = -8;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800220 goto exit;
221 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800222
Tony Kuofd778e32015-02-05 21:25:56 +0800223#if defined(RECOVERY_ABGR) || defined(RECOVERY_BGRA)
224 png_set_bgr(png_ptr);
225#endif
226
Elliott Hughes07cfb8f2015-04-10 13:12:05 -0700227 p_row = reinterpret_cast<unsigned char*>(malloc(width * 4));
Doug Zongkera418aa72014-03-17 12:10:02 -0700228 for (y = 0; y < height; ++y) {
229 png_read_row(png_ptr, p_row, NULL);
230 transform_rgb_to_draw(p_row, surface->data + y * surface->row_bytes, channels, width);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800231 }
Doug Zongkera418aa72014-03-17 12:10:02 -0700232 free(p_row);
Doug Zongker19faefa2009-03-27 17:06:24 -0700233
Doug Zongkera418aa72014-03-17 12:10:02 -0700234 *pSurface = surface;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800235
Doug Zongkera418aa72014-03-17 12:10:02 -0700236 exit:
Doug Zongker19faefa2009-03-27 17:06:24 -0700237 png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
Doug Zongkera418aa72014-03-17 12:10:02 -0700238 if (result < 0 && surface != NULL) free(surface);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800239 return result;
240}
241
Doug Zongkera418aa72014-03-17 12:10:02 -0700242int res_create_multi_display_surface(const char* name, int* frames, gr_surface** pSurface) {
243 gr_surface* surface = NULL;
Doug Zongker469954f2014-03-07 09:21:25 -0800244 int result = 0;
Doug Zongker469954f2014-03-07 09:21:25 -0800245 png_structp png_ptr = NULL;
246 png_infop info_ptr = NULL;
Doug Zongkera418aa72014-03-17 12:10:02 -0700247 png_uint_32 width, height;
248 png_byte channels;
Doug Zongker469954f2014-03-07 09:21:25 -0800249 int i;
Elliott Hughes07cfb8f2015-04-10 13:12:05 -0700250 png_textp text;
251 int num_text;
252 unsigned char* p_row;
253 unsigned int y;
Doug Zongker469954f2014-03-07 09:21:25 -0800254
255 *pSurface = NULL;
256 *frames = -1;
257
Doug Zongkera418aa72014-03-17 12:10:02 -0700258 result = open_png(name, &png_ptr, &info_ptr, &width, &height, &channels);
259 if (result < 0) return result;
Doug Zongker469954f2014-03-07 09:21:25 -0800260
261 *frames = 1;
Doug Zongker469954f2014-03-07 09:21:25 -0800262 if (png_get_text(png_ptr, info_ptr, &text, &num_text)) {
263 for (i = 0; i < num_text; ++i) {
264 if (text[i].key && strcmp(text[i].key, "Frames") == 0 && text[i].text) {
265 *frames = atoi(text[i].text);
266 break;
267 }
268 }
269 printf(" found frames = %d\n", *frames);
270 }
271
272 if (height % *frames != 0) {
273 printf("bad height (%d) for frame count (%d)\n", height, *frames);
274 result = -9;
275 goto exit;
276 }
277
Elliott Hughes07cfb8f2015-04-10 13:12:05 -0700278 surface = reinterpret_cast<gr_surface*>(malloc(*frames * sizeof(gr_surface)));
Doug Zongker469954f2014-03-07 09:21:25 -0800279 if (surface == NULL) {
280 result = -8;
281 goto exit;
282 }
283 for (i = 0; i < *frames; ++i) {
Doug Zongkera418aa72014-03-17 12:10:02 -0700284 surface[i] = init_display_surface(width, height / *frames);
285 if (surface[i] == NULL) {
286 result = -8;
287 goto exit;
Doug Zongker469954f2014-03-07 09:21:25 -0800288 }
289 }
290
Tony Kuofd778e32015-02-05 21:25:56 +0800291#if defined(RECOVERY_ABGR) || defined(RECOVERY_BGRA)
292 png_set_bgr(png_ptr);
293#endif
294
Elliott Hughes07cfb8f2015-04-10 13:12:05 -0700295 p_row = reinterpret_cast<unsigned char*>(malloc(width * 4));
Doug Zongkera418aa72014-03-17 12:10:02 -0700296 for (y = 0; y < height; ++y) {
297 png_read_row(png_ptr, p_row, NULL);
298 int frame = y % *frames;
299 unsigned char* out_row = surface[frame]->data +
300 (y / *frames) * surface[frame]->row_bytes;
301 transform_rgb_to_draw(p_row, out_row, channels, width);
302 }
303 free(p_row);
304
Doug Zongker469954f2014-03-07 09:21:25 -0800305 *pSurface = (gr_surface*) surface;
306
307exit:
308 png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
309
Doug Zongker469954f2014-03-07 09:21:25 -0800310 if (result < 0) {
311 if (surface) {
312 for (i = 0; i < *frames; ++i) {
313 if (surface[i]) free(surface[i]);
314 }
315 free(surface);
316 }
317 }
318 return result;
319}
320
Doug Zongkera418aa72014-03-17 12:10:02 -0700321int res_create_alpha_surface(const char* name, gr_surface* pSurface) {
322 gr_surface surface = NULL;
323 int result = 0;
324 png_structp png_ptr = NULL;
325 png_infop info_ptr = NULL;
326 png_uint_32 width, height;
327 png_byte channels;
328
329 *pSurface = NULL;
330
331 result = open_png(name, &png_ptr, &info_ptr, &width, &height, &channels);
332 if (result < 0) return result;
333
334 if (channels != 1) {
335 result = -7;
336 goto exit;
337 }
338
339 surface = malloc_surface(width * height);
340 if (surface == NULL) {
341 result = -8;
342 goto exit;
343 }
344 surface->width = width;
345 surface->height = height;
346 surface->row_bytes = width;
347 surface->pixel_bytes = 1;
348
Tony Kuofd778e32015-02-05 21:25:56 +0800349#if defined(RECOVERY_ABGR) || defined(RECOVERY_BGRA)
350 png_set_bgr(png_ptr);
351#endif
352
Doug Zongkera418aa72014-03-17 12:10:02 -0700353 unsigned char* p_row;
354 unsigned int y;
355 for (y = 0; y < height; ++y) {
356 p_row = surface->data + y * surface->row_bytes;
357 png_read_row(png_ptr, p_row, NULL);
358 }
359
360 *pSurface = surface;
361
362 exit:
363 png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
364 if (result < 0 && surface != NULL) free(surface);
365 return result;
366}
367
368static int matches_locale(const char* loc, const char* locale) {
Doug Zongker02ec6b82012-08-22 17:26:40 -0700369 if (locale == NULL) return 0;
370
Doug Zongker02ec6b82012-08-22 17:26:40 -0700371 if (strcmp(loc, locale) == 0) return 1;
372
373 // if loc does *not* have an underscore, and it matches the start
374 // of locale, and the next character in locale *is* an underscore,
375 // that's a match. For instance, loc == "en" matches locale ==
376 // "en_US".
377
378 int i;
379 for (i = 0; loc[i] != 0 && loc[i] != '_'; ++i);
380 if (loc[i] == '_') return 0;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700381
382 return (strncmp(locale, loc, i) == 0 && locale[i] == '_');
383}
384
Doug Zongkera418aa72014-03-17 12:10:02 -0700385int res_create_localized_alpha_surface(const char* name,
386 const char* locale,
387 gr_surface* pSurface) {
Doug Zongker16f97c32014-03-06 16:16:05 -0800388 gr_surface surface = NULL;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700389 int result = 0;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700390 png_structp png_ptr = NULL;
391 png_infop info_ptr = NULL;
Doug Zongkera418aa72014-03-17 12:10:02 -0700392 png_uint_32 width, height;
393 png_byte channels;
Elliott Hughes07cfb8f2015-04-10 13:12:05 -0700394 unsigned char* row;
395 png_uint_32 y;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700396
397 *pSurface = NULL;
398
Doug Zongkera418aa72014-03-17 12:10:02 -0700399 if (locale == NULL) {
400 surface = malloc_surface(0);
401 surface->width = 0;
402 surface->height = 0;
403 surface->row_bytes = 0;
404 surface->pixel_bytes = 1;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700405 goto exit;
406 }
407
Doug Zongkera418aa72014-03-17 12:10:02 -0700408 result = open_png(name, &png_ptr, &info_ptr, &width, &height, &channels);
409 if (result < 0) return result;
410
411 if (channels != 1) {
412 result = -7;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700413 goto exit;
414 }
415
Elliott Hughes07cfb8f2015-04-10 13:12:05 -0700416 row = reinterpret_cast<unsigned char*>(malloc(width));
Doug Zongker02ec6b82012-08-22 17:26:40 -0700417 for (y = 0; y < height; ++y) {
418 png_read_row(png_ptr, row, NULL);
419 int w = (row[1] << 8) | row[0];
420 int h = (row[3] << 8) | row[2];
421 int len = row[4];
Doug Zongker469954f2014-03-07 09:21:25 -0800422 char* loc = (char*)row+5;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700423
Doug Zongkera418aa72014-03-17 12:10:02 -0700424 if (y+1+h >= height || matches_locale(loc, locale)) {
Doug Zongker52eeea4f2012-09-04 14:28:25 -0700425 printf(" %20s: %s (%d x %d @ %d)\n", name, loc, w, h, y);
426
Doug Zongker16f97c32014-03-06 16:16:05 -0800427 surface = malloc_surface(w*h);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700428 if (surface == NULL) {
429 result = -8;
430 goto exit;
431 }
Doug Zongker02ec6b82012-08-22 17:26:40 -0700432 surface->width = w;
433 surface->height = h;
Doug Zongker16f97c32014-03-06 16:16:05 -0800434 surface->row_bytes = w;
435 surface->pixel_bytes = 1;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700436
437 int i;
438 for (i = 0; i < h; ++i, ++y) {
439 png_read_row(png_ptr, row, NULL);
Doug Zongkera418aa72014-03-17 12:10:02 -0700440 memcpy(surface->data + i*w, row, w);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700441 }
442
443 *pSurface = (gr_surface) surface;
444 break;
445 } else {
Doug Zongker02ec6b82012-08-22 17:26:40 -0700446 int i;
447 for (i = 0; i < h; ++i, ++y) {
448 png_read_row(png_ptr, row, NULL);
449 }
450 }
451 }
452
453exit:
454 png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
Doug Zongkera418aa72014-03-17 12:10:02 -0700455 if (result < 0 && surface != NULL) free(surface);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700456 return result;
457}
458
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800459void res_free_surface(gr_surface surface) {
Doug Zongker16f97c32014-03-06 16:16:05 -0800460 free(surface);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800461}