2009-03-04 03:28:42 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <linux/fb.h>
|
|
|
|
#include <linux/kd.h>
|
|
|
|
|
|
|
|
#include <pixelflinger/pixelflinger.h>
|
|
|
|
|
2009-03-28 00:06:24 +00:00
|
|
|
#include <png.h>
|
|
|
|
|
2009-03-04 03:28:42 +00:00
|
|
|
#include "minui.h"
|
|
|
|
|
2009-03-28 00:06:24 +00:00
|
|
|
// libpng gives "undefined reference to 'pow'" errors, and I have no
|
|
|
|
// idea how to convince the build system to link with -lm. We don't
|
|
|
|
// need this functionality (it's used for gamma adjustment) so provide
|
|
|
|
// a dummy implementation to satisfy the linker.
|
|
|
|
double pow(double x, double y) {
|
|
|
|
return x;
|
|
|
|
}
|
2009-03-04 03:28:42 +00:00
|
|
|
|
|
|
|
int res_create_surface(const char* name, gr_surface* pSurface) {
|
|
|
|
char resPath[256];
|
|
|
|
GGLSurface* surface = NULL;
|
|
|
|
int result = 0;
|
2009-03-28 00:06:24 +00:00
|
|
|
unsigned char header[8];
|
|
|
|
png_structp png_ptr = NULL;
|
|
|
|
png_infop info_ptr = NULL;
|
|
|
|
|
2011-03-01 22:04:34 +00:00
|
|
|
*pSurface = NULL;
|
|
|
|
|
2009-03-28 00:06:24 +00:00
|
|
|
snprintf(resPath, sizeof(resPath)-1, "/res/images/%s.png", name);
|
2009-03-04 03:28:42 +00:00
|
|
|
resPath[sizeof(resPath)-1] = '\0';
|
2009-03-28 00:06:24 +00:00
|
|
|
FILE* fp = fopen(resPath, "rb");
|
|
|
|
if (fp == NULL) {
|
2009-03-04 03:28:42 +00:00
|
|
|
result = -1;
|
|
|
|
goto exit;
|
|
|
|
}
|
2009-03-28 00:06:24 +00:00
|
|
|
|
|
|
|
size_t bytesRead = fread(header, 1, sizeof(header), fp);
|
2009-03-04 03:28:42 +00:00
|
|
|
if (bytesRead != sizeof(header)) {
|
|
|
|
result = -2;
|
|
|
|
goto exit;
|
|
|
|
}
|
2009-03-28 00:06:24 +00:00
|
|
|
|
|
|
|
if (png_sig_cmp(header, 0, sizeof(header))) {
|
|
|
|
result = -3;
|
2009-03-04 03:28:42 +00:00
|
|
|
goto exit;
|
|
|
|
}
|
2009-03-28 00:06:24 +00:00
|
|
|
|
|
|
|
png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
|
|
|
|
if (!png_ptr) {
|
2009-03-04 03:28:42 +00:00
|
|
|
result = -4;
|
|
|
|
goto exit;
|
|
|
|
}
|
2009-03-28 00:06:24 +00:00
|
|
|
|
|
|
|
info_ptr = png_create_info_struct(png_ptr);
|
|
|
|
if (!info_ptr) {
|
2009-03-04 03:28:42 +00:00
|
|
|
result = -5;
|
|
|
|
goto exit;
|
|
|
|
}
|
2009-03-28 00:06:24 +00:00
|
|
|
|
|
|
|
if (setjmp(png_jmpbuf(png_ptr))) {
|
2009-03-04 03:28:42 +00:00
|
|
|
result = -6;
|
|
|
|
goto exit;
|
|
|
|
}
|
2009-03-28 00:06:24 +00:00
|
|
|
|
|
|
|
png_init_io(png_ptr, fp);
|
|
|
|
png_set_sig_bytes(png_ptr, sizeof(header));
|
|
|
|
png_read_info(png_ptr, info_ptr);
|
|
|
|
|
|
|
|
size_t width = info_ptr->width;
|
|
|
|
size_t height = info_ptr->height;
|
2009-03-04 03:28:42 +00:00
|
|
|
size_t stride = 4 * width;
|
|
|
|
size_t pixelSize = stride * height;
|
2009-03-28 00:06:24 +00:00
|
|
|
|
|
|
|
int color_type = info_ptr->color_type;
|
|
|
|
int bit_depth = info_ptr->bit_depth;
|
|
|
|
int channels = info_ptr->channels;
|
2009-10-08 23:32:58 +00:00
|
|
|
if (!(bit_depth == 8 &&
|
|
|
|
((channels == 3 && color_type == PNG_COLOR_TYPE_RGB) ||
|
|
|
|
(channels == 4 && color_type == PNG_COLOR_TYPE_RGBA) ||
|
|
|
|
(channels == 1 && color_type == PNG_COLOR_TYPE_PALETTE)))) {
|
2009-03-28 00:06:24 +00:00
|
|
|
return -7;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2009-03-04 03:28:42 +00:00
|
|
|
surface = malloc(sizeof(GGLSurface) + pixelSize);
|
|
|
|
if (surface == NULL) {
|
2009-03-28 00:06:24 +00:00
|
|
|
result = -8;
|
2009-03-04 03:28:42 +00:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
unsigned char* pData = (unsigned char*) (surface + 1);
|
|
|
|
surface->version = sizeof(GGLSurface);
|
|
|
|
surface->width = width;
|
|
|
|
surface->height = height;
|
|
|
|
surface->stride = width; /* Yes, pixels, not bytes */
|
|
|
|
surface->data = pData;
|
2009-03-28 00:06:24 +00:00
|
|
|
surface->format = (channels == 3) ?
|
2009-03-04 03:28:42 +00:00
|
|
|
GGL_PIXEL_FORMAT_RGBX_8888 : GGL_PIXEL_FORMAT_RGBA_8888;
|
|
|
|
|
2011-03-05 00:28:48 +00:00
|
|
|
int alpha = 0;
|
2009-10-08 23:32:58 +00:00
|
|
|
if (color_type == PNG_COLOR_TYPE_PALETTE) {
|
2011-03-05 00:28:48 +00:00
|
|
|
png_set_palette_to_rgb(png_ptr);
|
|
|
|
}
|
|
|
|
if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) {
|
|
|
|
png_set_tRNS_to_alpha(png_ptr);
|
|
|
|
alpha = 1;
|
2009-10-08 23:32:58 +00:00
|
|
|
}
|
|
|
|
|
2009-03-28 00:06:24 +00:00
|
|
|
int y;
|
2011-03-05 00:28:48 +00:00
|
|
|
if (channels == 3 || (channels == 1 && !alpha)) {
|
2009-03-28 00:06:24 +00:00
|
|
|
for (y = 0; y < height; ++y) {
|
|
|
|
unsigned char* pRow = pData + y * stride;
|
|
|
|
png_read_row(png_ptr, pRow, NULL);
|
|
|
|
|
2009-03-04 03:28:42 +00:00
|
|
|
int x;
|
|
|
|
for(x = width - 1; x >= 0; x--) {
|
|
|
|
int sx = x * 3;
|
|
|
|
int dx = x * 4;
|
2009-03-28 00:06:24 +00:00
|
|
|
unsigned char r = pRow[sx];
|
2009-03-04 03:28:42 +00:00
|
|
|
unsigned char g = pRow[sx + 1];
|
2009-03-28 00:06:24 +00:00
|
|
|
unsigned char b = pRow[sx + 2];
|
2009-03-04 03:28:42 +00:00
|
|
|
unsigned char a = 0xff;
|
|
|
|
pRow[dx ] = r; // r
|
|
|
|
pRow[dx + 1] = g; // g
|
2009-03-28 00:06:24 +00:00
|
|
|
pRow[dx + 2] = b; // b
|
2009-03-04 03:28:42 +00:00
|
|
|
pRow[dx + 3] = a;
|
|
|
|
}
|
|
|
|
}
|
2009-03-28 00:06:24 +00:00
|
|
|
} else {
|
|
|
|
for (y = 0; y < height; ++y) {
|
|
|
|
unsigned char* pRow = pData + y * stride;
|
|
|
|
png_read_row(png_ptr, pRow, NULL);
|
2009-03-04 03:28:42 +00:00
|
|
|
}
|
|
|
|
}
|
2009-03-28 00:06:24 +00:00
|
|
|
|
2009-03-04 03:28:42 +00:00
|
|
|
*pSurface = (gr_surface) surface;
|
|
|
|
|
|
|
|
exit:
|
2009-03-28 00:06:24 +00:00
|
|
|
png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
|
|
|
|
|
|
|
|
if (fp != NULL) {
|
|
|
|
fclose(fp);
|
2009-03-04 03:28:42 +00:00
|
|
|
}
|
|
|
|
if (result < 0) {
|
|
|
|
if (surface) {
|
|
|
|
free(surface);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void res_free_surface(gr_surface surface) {
|
|
|
|
GGLSurface* pSurface = (GGLSurface*) surface;
|
|
|
|
if (pSurface) {
|
|
|
|
free(pSurface);
|
|
|
|
}
|
|
|
|
}
|