all repos — mgba @ 697c1cfa9d67413138349a28380f65be8c6b464d

mGBA Game Boy Advance Emulator

src/util/png-io.c (view raw)

  1/* Copyright (c) 2013-2014 Jeffrey Pfau
  2 *
  3 * This Source Code Form is subject to the terms of the Mozilla Public
  4 * License, v. 2.0. If a copy of the MPL was not distributed with this
  5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  6#include <mgba-util/png-io.h>
  7
  8#ifdef USE_PNG
  9
 10#include <mgba-util/vfs.h>
 11
 12static void _pngWrite(png_structp png, png_bytep buffer, png_size_t size) {
 13	struct VFile* vf = png_get_io_ptr(png);
 14	size_t written = vf->write(vf, buffer, size);
 15	if (written != size) {
 16		png_error(png, "Could not write PNG");
 17	}
 18}
 19
 20static void _pngRead(png_structp png, png_bytep buffer, png_size_t size) {
 21	struct VFile* vf = png_get_io_ptr(png);
 22	size_t read = vf->read(vf, buffer, size);
 23	if (read != size) {
 24		png_error(png, "Could not read PNG");
 25	}
 26}
 27
 28png_structp PNGWriteOpen(struct VFile* source) {
 29	png_structp png = png_create_write_struct(PNG_LIBPNG_VER_STRING, 0, 0, 0);
 30	if (!png) {
 31		return 0;
 32	}
 33	if (setjmp(png_jmpbuf(png))) {
 34		png_destroy_write_struct(&png, 0);
 35		return 0;
 36	}
 37	png_set_write_fn(png, source, _pngWrite, 0);
 38	return png;
 39}
 40
 41static png_infop _pngWriteHeader(png_structp png, unsigned width, unsigned height, int type) {
 42	png_infop info = png_create_info_struct(png);
 43	if (!info) {
 44		return 0;
 45	}
 46	if (setjmp(png_jmpbuf(png))) {
 47		return 0;
 48	}
 49	png_set_IHDR(png, info, width, height, 8, type, PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
 50	png_write_info(png, info);
 51	return info;
 52}
 53
 54png_infop PNGWriteHeader(png_structp png, unsigned width, unsigned height) {
 55	return _pngWriteHeader(png, width, height, PNG_COLOR_TYPE_RGB);
 56}
 57
 58png_infop PNGWriteHeaderA(png_structp png, unsigned width, unsigned height) {
 59	return _pngWriteHeader(png, width, height, PNG_COLOR_TYPE_RGB_ALPHA);
 60}
 61
 62png_infop PNGWriteHeader8(png_structp png, unsigned width, unsigned height) {
 63	return _pngWriteHeader(png, width, height, PNG_COLOR_TYPE_PALETTE);
 64}
 65
 66bool PNGWritePalette(png_structp png, png_infop info, const uint32_t* palette, unsigned entries) {
 67	if (!palette || !entries) {
 68		return false;
 69	}
 70	if (setjmp(png_jmpbuf(png))) {
 71		return false;
 72	}
 73	png_color colors[256];
 74	png_byte trans[256];
 75	unsigned i;
 76	for (i = 0; i < entries && i < 256; ++i) {
 77		colors[i].red = palette[i];
 78		colors[i].green = palette[i] >> 8;
 79		colors[i].blue = palette[i] >> 16;
 80		trans[i] = palette[i] >> 24;
 81	}
 82	png_set_PLTE(png, info, colors, entries);
 83	png_set_tRNS(png, info, trans, entries, NULL);
 84	png_write_info(png, info);
 85	return true;
 86}
 87
 88bool PNGWritePixels(png_structp png, unsigned width, unsigned height, unsigned stride, const void* pixels) {
 89	png_bytep row = malloc(sizeof(png_byte) * width * 3);
 90	if (!row) {
 91		return false;
 92	}
 93	const png_byte* pixelData = pixels;
 94	if (setjmp(png_jmpbuf(png))) {
 95		free(row);
 96		return false;
 97	}
 98	unsigned i;
 99	for (i = 0; i < height; ++i) {
100		unsigned x;
101		for (x = 0; x < width; ++x) {
102#ifdef COLOR_16_BIT
103			uint16_t c = ((uint16_t*) pixelData)[stride * i + x];
104#ifdef COLOR_5_6_5
105			row[x * 3] = (c >> 8) & 0xF8;
106			row[x * 3 + 1] = (c >> 3) & 0xFC;
107			row[x * 3 + 2] = (c << 3) & 0xF8;
108#else
109			row[x * 3] = (c >> 7) & 0xF8;
110			row[x * 3 + 1] = (c >> 2) & 0xF8;
111			row[x * 3 + 2] = (c << 3) & 0xF8;
112#endif
113#else
114#ifdef __BIG_ENDIAN__
115			row[x * 3] = pixelData[stride * i * 4 + x * 4 + 3];
116			row[x * 3 + 1] = pixelData[stride * i * 4 + x * 4 + 2];
117			row[x * 3 + 2] = pixelData[stride * i * 4 + x * 4 + 1];
118#else
119			row[x * 3] = pixelData[stride * i * 4 + x * 4];
120			row[x * 3 + 1] = pixelData[stride * i * 4 + x * 4 + 1];
121			row[x * 3 + 2] = pixelData[stride * i * 4 + x * 4 + 2];
122#endif
123#endif
124		}
125		png_write_row(png, row);
126	}
127	free(row);
128	return true;
129}
130
131bool PNGWritePixelsA(png_structp png, unsigned width, unsigned height, unsigned stride, const void* pixels) {
132	png_bytep row = malloc(sizeof(png_byte) * width * 4);
133	if (!row) {
134		return false;
135	}
136	const png_byte* pixelData = pixels;
137	if (setjmp(png_jmpbuf(png))) {
138		free(row);
139		return false;
140	}
141	unsigned i;
142	for (i = 0; i < height; ++i) {
143		unsigned x;
144		for (x = 0; x < width; ++x) {
145#ifdef COLOR_16_BIT
146			uint16_t c = ((uint16_t*) pixelData)[stride * i + x];
147#ifdef COLOR_5_6_5
148			row[x * 4] = (c >> 8) & 0xF8;
149			row[x * 4 + 1] = (c >> 3) & 0xFC;
150			row[x * 4 + 2] = (c << 3) & 0xF8;
151			row[x * 4 + 3] = 0xFF;
152#else
153			row[x * 4] = (c >> 7) & 0xF8;
154			row[x * 4 + 1] = (c >> 2) & 0xF8;
155			row[x * 4 + 2] = (c << 3) & 0xF8;
156			row[x * 4 + 3] = (c >> 15) * 0xFF;
157#endif
158#else
159#ifdef __BIG_ENDIAN__
160			row[x * 4] = pixelData[stride * i * 4 + x * 4 + 3];
161			row[x * 4 + 1] = pixelData[stride * i * 4 + x * 4 + 2];
162			row[x * 4 + 2] = pixelData[stride * i * 4 + x * 4 + 1];
163			row[x * 4 + 3] = pixelData[stride * i * 4 + x * 4];
164#else
165			row[x * 4] = pixelData[stride * i * 4 + x * 4];
166			row[x * 4 + 1] = pixelData[stride * i * 4 + x * 4 + 1];
167			row[x * 4 + 2] = pixelData[stride * i * 4 + x * 4 + 2];
168			row[x * 4 + 3] = pixelData[stride * i * 4 + x * 4 + 3];
169#endif
170#endif
171		}
172		png_write_row(png, row);
173	}
174	free(row);
175	return true;
176}
177
178bool PNGWritePixels8(png_structp png, unsigned width, unsigned height, unsigned stride, const void* pixels) {
179	UNUSED(width);
180	const png_byte* pixelData = pixels;
181	if (setjmp(png_jmpbuf(png))) {
182		return false;
183	}
184	unsigned i;
185	for (i = 0; i < height; ++i) {
186		png_write_row(png, &pixelData[stride * i]);
187	}
188	return true;
189}
190
191bool PNGWriteCustomChunk(png_structp png, const char* name, size_t size, void* data) {
192	char realName[5];
193	strncpy(realName, name, 4);
194	realName[0] = tolower((int) realName[0]);
195	realName[1] = tolower((int) realName[1]);
196	realName[4] = '\0';
197	if (setjmp(png_jmpbuf(png))) {
198		return false;
199	}
200	png_write_chunk(png, (png_bytep) realName, data, size);
201	return true;
202}
203
204void PNGWriteClose(png_structp png, png_infop info) {
205	if (!setjmp(png_jmpbuf(png))) {
206		png_write_end(png, info);
207	}
208	png_destroy_write_struct(&png, &info);
209}
210
211bool isPNG(struct VFile* source) {
212	png_byte header[PNG_HEADER_BYTES];
213	if (source->read(source, header, PNG_HEADER_BYTES) < PNG_HEADER_BYTES) {
214		return false;
215	}
216	return !png_sig_cmp(header, 0, PNG_HEADER_BYTES);
217}
218
219png_structp PNGReadOpen(struct VFile* source, unsigned offset) {
220	png_structp png = png_create_read_struct(PNG_LIBPNG_VER_STRING, 0, 0, 0);
221	if (!png) {
222		return 0;
223	}
224	if (setjmp(png_jmpbuf(png))) {
225		png_destroy_read_struct(&png, 0, 0);
226		return 0;
227	}
228	png_set_read_fn(png, source, _pngRead);
229	png_set_sig_bytes(png, offset);
230	return png;
231}
232
233bool PNGInstallChunkHandler(png_structp png, void* context, ChunkHandler handler, const char* chunkName) {
234	if (setjmp(png_jmpbuf(png))) {
235		return false;
236	}
237	png_set_read_user_chunk_fn(png, context, handler);
238	int len = strlen(chunkName);
239	int chunks = 0;
240	char* chunkList = strdup(chunkName);
241	int i;
242	for (i = 4; i <= len; i += 5) {
243		chunkList[i] = '\0';
244		++chunks;
245	}
246	png_set_keep_unknown_chunks(png, PNG_HANDLE_CHUNK_ALWAYS, (png_bytep) chunkList, chunks);
247	free(chunkList);
248	return true;
249}
250
251bool PNGReadHeader(png_structp png, png_infop info) {
252	if (setjmp(png_jmpbuf(png))) {
253		return false;
254	}
255	png_read_info(png, info);
256	return true;
257}
258
259bool PNGIgnorePixels(png_structp png, png_infop info) {
260	if (setjmp(png_jmpbuf(png))) {
261		return false;
262	}
263
264	unsigned height = png_get_image_height(png, info);
265	unsigned i;
266	for (i = 0; i < height; ++i) {
267		png_read_row(png, 0, 0);
268	}
269	return true;
270}
271
272bool PNGReadPixels(png_structp png, png_infop info, void* pixels, unsigned width, unsigned height, unsigned stride) {
273	if (setjmp(png_jmpbuf(png))) {
274		return false;
275	}
276
277	uint8_t* pixelData = pixels;
278	unsigned pngHeight = png_get_image_height(png, info);
279	if (height < pngHeight) {
280		pngHeight = height;
281	}
282
283	unsigned pngWidth = png_get_image_width(png, info);
284	if (width < pngWidth) {
285		pngWidth = width;
286	}
287
288	unsigned i;
289	png_bytep row = malloc(png_get_rowbytes(png, info));
290	for (i = 0; i < pngHeight; ++i) {
291		png_read_row(png, row, 0);
292		unsigned x;
293		for (x = 0; x < pngWidth; ++x) {
294#ifdef COLOR_16_BIT
295			uint16_t c = row[x * 3 + 2] >> 3;
296#ifdef COLOR_5_6_5
297			c |= (row[x * 3 + 1] << 3) & 0x7E0;
298			c |= (row[x * 3] << 8) & 0xF800;
299#else
300			c |= (row[x * 3 + 1] << 2) & 0x3E0;
301			c |= (row[x * 3] << 7) & 0x7C00;
302#endif
303			((uint16_t*) pixelData)[stride * i + x] = c;
304#else
305#if __BIG_ENDIAN__
306			pixelData[stride * i * 4 + x * 4 + 3] = row[x * 3];
307			pixelData[stride * i * 4 + x * 4 + 2] = row[x * 3 + 1];
308			pixelData[stride * i * 4 + x * 4 + 1] = row[x * 3 + 2];
309			pixelData[stride * i * 4 + x * 4] = 0xFF;
310#else
311			pixelData[stride * i * 4 + x * 4] = row[x * 3];
312			pixelData[stride * i * 4 + x * 4 + 1] = row[x * 3 + 1];
313			pixelData[stride * i * 4 + x * 4 + 2] = row[x * 3 + 2];
314			pixelData[stride * i * 4 + x * 4 + 3] = 0xFF;
315#endif
316#endif
317		}
318	}
319	free(row);
320	return true;
321}
322
323bool PNGReadFooter(png_structp png, png_infop end) {
324	if (setjmp(png_jmpbuf(png))) {
325		return false;
326	}
327	png_read_end(png, end);
328	return true;
329}
330
331void PNGReadClose(png_structp png, png_infop info, png_infop end) {
332	png_destroy_read_struct(&png, &info, &end);
333}
334
335#endif