blob: af8720a56b84353268ed7057bf189a76f913773e [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>
18#include <unistd.h>
19
20#include <fcntl.h>
21#include <stdio.h>
22
23#include <sys/ioctl.h>
24#include <sys/mman.h>
25#include <sys/types.h>
26
27#include <linux/fb.h>
28#include <linux/kd.h>
29
30#include <pixelflinger/pixelflinger.h>
31
Doug Zongker19faefa2009-03-27 17:06:24 -070032#include <png.h>
33
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080034#include "minui.h"
35
Doug Zongker02ec6b82012-08-22 17:26:40 -070036extern char* locale;
37
Doug Zongker19faefa2009-03-27 17:06:24 -070038// libpng gives "undefined reference to 'pow'" errors, and I have no
39// idea how to convince the build system to link with -lm. We don't
40// need this functionality (it's used for gamma adjustment) so provide
41// a dummy implementation to satisfy the linker.
42double pow(double x, double y) {
43 return x;
44}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080045
46int res_create_surface(const char* name, gr_surface* pSurface) {
47 char resPath[256];
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080048 GGLSurface* surface = NULL;
49 int result = 0;
Doug Zongker19faefa2009-03-27 17:06:24 -070050 unsigned char header[8];
51 png_structp png_ptr = NULL;
52 png_infop info_ptr = NULL;
53
Doug Zongker6809c512011-03-01 14:04:34 -080054 *pSurface = NULL;
55
Doug Zongker19faefa2009-03-27 17:06:24 -070056 snprintf(resPath, sizeof(resPath)-1, "/res/images/%s.png", name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080057 resPath[sizeof(resPath)-1] = '\0';
Doug Zongker19faefa2009-03-27 17:06:24 -070058 FILE* fp = fopen(resPath, "rb");
59 if (fp == NULL) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080060 result = -1;
61 goto exit;
62 }
Doug Zongker19faefa2009-03-27 17:06:24 -070063
64 size_t bytesRead = fread(header, 1, sizeof(header), fp);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080065 if (bytesRead != sizeof(header)) {
66 result = -2;
67 goto exit;
68 }
Doug Zongker19faefa2009-03-27 17:06:24 -070069
70 if (png_sig_cmp(header, 0, sizeof(header))) {
71 result = -3;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080072 goto exit;
73 }
Doug Zongker19faefa2009-03-27 17:06:24 -070074
75 png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
76 if (!png_ptr) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080077 result = -4;
78 goto exit;
79 }
Doug Zongker19faefa2009-03-27 17:06:24 -070080
81 info_ptr = png_create_info_struct(png_ptr);
82 if (!info_ptr) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080083 result = -5;
84 goto exit;
85 }
Doug Zongker19faefa2009-03-27 17:06:24 -070086
87 if (setjmp(png_jmpbuf(png_ptr))) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080088 result = -6;
89 goto exit;
90 }
Doug Zongker19faefa2009-03-27 17:06:24 -070091
92 png_init_io(png_ptr, fp);
93 png_set_sig_bytes(png_ptr, sizeof(header));
94 png_read_info(png_ptr, info_ptr);
95
96 size_t width = info_ptr->width;
97 size_t height = info_ptr->height;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080098 size_t stride = 4 * width;
99 size_t pixelSize = stride * height;
Doug Zongker19faefa2009-03-27 17:06:24 -0700100
101 int color_type = info_ptr->color_type;
102 int bit_depth = info_ptr->bit_depth;
103 int channels = info_ptr->channels;
Doug Zongkerd93a2542009-10-08 16:32:58 -0700104 if (!(bit_depth == 8 &&
105 ((channels == 3 && color_type == PNG_COLOR_TYPE_RGB) ||
106 (channels == 4 && color_type == PNG_COLOR_TYPE_RGBA) ||
107 (channels == 1 && color_type == PNG_COLOR_TYPE_PALETTE)))) {
Doug Zongker19faefa2009-03-27 17:06:24 -0700108 return -7;
109 goto exit;
110 }
111
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800112 surface = malloc(sizeof(GGLSurface) + pixelSize);
113 if (surface == NULL) {
Doug Zongker19faefa2009-03-27 17:06:24 -0700114 result = -8;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800115 goto exit;
116 }
117 unsigned char* pData = (unsigned char*) (surface + 1);
118 surface->version = sizeof(GGLSurface);
119 surface->width = width;
120 surface->height = height;
121 surface->stride = width; /* Yes, pixels, not bytes */
122 surface->data = pData;
Doug Zongker19faefa2009-03-27 17:06:24 -0700123 surface->format = (channels == 3) ?
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800124 GGL_PIXEL_FORMAT_RGBX_8888 : GGL_PIXEL_FORMAT_RGBA_8888;
125
Doug Zongker68189f22011-03-04 16:28:48 -0800126 int alpha = 0;
Doug Zongkerd93a2542009-10-08 16:32:58 -0700127 if (color_type == PNG_COLOR_TYPE_PALETTE) {
Doug Zongker68189f22011-03-04 16:28:48 -0800128 png_set_palette_to_rgb(png_ptr);
129 }
130 if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) {
131 png_set_tRNS_to_alpha(png_ptr);
132 alpha = 1;
Doug Zongkerd93a2542009-10-08 16:32:58 -0700133 }
134
Doug Zongker19faefa2009-03-27 17:06:24 -0700135 int y;
Doug Zongker68189f22011-03-04 16:28:48 -0800136 if (channels == 3 || (channels == 1 && !alpha)) {
Doug Zongker19faefa2009-03-27 17:06:24 -0700137 for (y = 0; y < height; ++y) {
138 unsigned char* pRow = pData + y * stride;
139 png_read_row(png_ptr, pRow, NULL);
140
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800141 int x;
142 for(x = width - 1; x >= 0; x--) {
143 int sx = x * 3;
144 int dx = x * 4;
Doug Zongker19faefa2009-03-27 17:06:24 -0700145 unsigned char r = pRow[sx];
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800146 unsigned char g = pRow[sx + 1];
Doug Zongker19faefa2009-03-27 17:06:24 -0700147 unsigned char b = pRow[sx + 2];
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800148 unsigned char a = 0xff;
149 pRow[dx ] = r; // r
150 pRow[dx + 1] = g; // g
Doug Zongker19faefa2009-03-27 17:06:24 -0700151 pRow[dx + 2] = b; // b
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800152 pRow[dx + 3] = a;
153 }
154 }
Doug Zongker19faefa2009-03-27 17:06:24 -0700155 } else {
156 for (y = 0; y < height; ++y) {
157 unsigned char* pRow = pData + y * stride;
158 png_read_row(png_ptr, pRow, NULL);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800159 }
160 }
Doug Zongker19faefa2009-03-27 17:06:24 -0700161
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800162 *pSurface = (gr_surface) surface;
163
164exit:
Doug Zongker19faefa2009-03-27 17:06:24 -0700165 png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
166
167 if (fp != NULL) {
168 fclose(fp);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800169 }
170 if (result < 0) {
171 if (surface) {
172 free(surface);
173 }
174 }
175 return result;
176}
177
Doug Zongker02ec6b82012-08-22 17:26:40 -0700178static int matches_locale(const char* loc) {
179 if (locale == NULL) return 0;
180
181 printf("matching loc=[%s] vs locale=[%s]\n", loc, locale);
182
183 if (strcmp(loc, locale) == 0) return 1;
184
185 // if loc does *not* have an underscore, and it matches the start
186 // of locale, and the next character in locale *is* an underscore,
187 // that's a match. For instance, loc == "en" matches locale ==
188 // "en_US".
189
190 int i;
191 for (i = 0; loc[i] != 0 && loc[i] != '_'; ++i);
192 if (loc[i] == '_') return 0;
193 printf(" partial match possible; i = %d\n", i);
194
195 return (strncmp(locale, loc, i) == 0 && locale[i] == '_');
196}
197
198int res_create_localized_surface(const char* name, gr_surface* pSurface) {
199 char resPath[256];
200 GGLSurface* surface = NULL;
201 int result = 0;
202 unsigned char header[8];
203 png_structp png_ptr = NULL;
204 png_infop info_ptr = NULL;
205
206 *pSurface = NULL;
207
208 snprintf(resPath, sizeof(resPath)-1, "/res/images/%s.png", name);
209 resPath[sizeof(resPath)-1] = '\0';
210 FILE* fp = fopen(resPath, "rb");
211 if (fp == NULL) {
212 result = -1;
213 goto exit;
214 }
215
216 size_t bytesRead = fread(header, 1, sizeof(header), fp);
217 if (bytesRead != sizeof(header)) {
218 result = -2;
219 goto exit;
220 }
221
222 if (png_sig_cmp(header, 0, sizeof(header))) {
223 result = -3;
224 goto exit;
225 }
226
227 png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
228 if (!png_ptr) {
229 result = -4;
230 goto exit;
231 }
232
233 info_ptr = png_create_info_struct(png_ptr);
234 if (!info_ptr) {
235 result = -5;
236 goto exit;
237 }
238
239 if (setjmp(png_jmpbuf(png_ptr))) {
240 result = -6;
241 goto exit;
242 }
243
244 png_init_io(png_ptr, fp);
245 png_set_sig_bytes(png_ptr, sizeof(header));
246 png_read_info(png_ptr, info_ptr);
247
248 size_t width = info_ptr->width;
249 size_t height = info_ptr->height;
250 size_t stride = 4 * width;
251
252 printf("image size is %d x %d\n", width, height);
253
254 int color_type = info_ptr->color_type;
255 int bit_depth = info_ptr->bit_depth;
256 int channels = info_ptr->channels;
257 printf("color_type %d bit_depth %d channels %d\n",
258 color_type, bit_depth, channels);
259
260 if (!(bit_depth == 8 &&
261 (channels == 1 && color_type == PNG_COLOR_TYPE_GRAY))) {
262 return -7;
263 printf("exiting -7\n");
264 goto exit;
265 }
266
267 unsigned char* row = malloc(width);
268 int y;
269 for (y = 0; y < height; ++y) {
270 png_read_row(png_ptr, row, NULL);
271 int w = (row[1] << 8) | row[0];
272 int h = (row[3] << 8) | row[2];
273 int len = row[4];
274 char* loc = row+5;
275
276 printf("row %d: %s %d x %d\n", y, loc, w, h);
277
278 if (y+1+h >= height || matches_locale(loc)) {
279 printf(" taking this one\n");
280
281 surface = malloc(sizeof(GGLSurface));
282 if (surface == NULL) {
283 result = -8;
284 goto exit;
285 }
286 unsigned char* pData = malloc(w*h);
287
288 surface->version = sizeof(GGLSurface);
289 surface->width = w;
290 surface->height = h;
291 surface->stride = w; /* Yes, pixels, not bytes */
292 surface->data = pData;
293 surface->format = GGL_PIXEL_FORMAT_A_8;
294
295 int i;
296 for (i = 0; i < h; ++i, ++y) {
297 png_read_row(png_ptr, row, NULL);
298 memcpy(pData + i*w, row, w);
299 }
300
301 *pSurface = (gr_surface) surface;
302 break;
303 } else {
304 printf(" skipping\n");
305 int i;
306 for (i = 0; i < h; ++i, ++y) {
307 png_read_row(png_ptr, row, NULL);
308 }
309 }
310 }
311
312exit:
313 png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
314
315 if (fp != NULL) {
316 fclose(fp);
317 }
318 if (result < 0) {
319 if (surface) {
320 free(surface);
321 }
322 }
323 return result;
324}
325
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800326void res_free_surface(gr_surface surface) {
327 GGLSurface* pSurface = (GGLSurface*) surface;
328 if (pSurface) {
329 free(pSurface);
330 }
331}