2 Copyright (C) 2003, 2010 - Wolfire Games
3 Copyright (C) 2010-2016 - Lugaru contributors (see AUTHORS file)
5 This file is part of Lugaru.
7 Lugaru is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 Lugaru is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with Lugaru. If not, see <http://www.gnu.org/licenses/>.
21 /**> HEADER FILES <**/
30 #include "Utils/Folders.h"
32 extern bool visibleloading;
34 /* These two are needed for screenshot */
35 extern int kContextWidth;
36 extern int kContextHeight;
38 static bool load_png(const char * fname, ImageRec & tex);
39 static bool load_jpg(const char * fname, ImageRec & tex);
40 static bool save_screenshot_png(const char * fname);
44 data = ( GLubyte* )malloc( 1024 * 1024 * 4 );
53 bool load_image(const char *file_name, ImageRec &tex)
56 Game::LoadingScreen();
58 if ( tex.data == NULL )
61 const char *ptr = strrchr((char *)file_name, '.');
63 if (strcasecmp(ptr + 1, "png") == 0)
64 return load_png(file_name, tex);
65 else if (strcasecmp(ptr + 1, "jpg") == 0)
66 return load_jpg(file_name, tex);
69 STUBBED("Unsupported image type");
73 bool save_screenshot(const char *file_name)
75 const char *ptr = strrchr((char *)file_name, '.');
77 if (strcasecmp(ptr + 1, "png") == 0)
78 return save_screenshot_png((Folders::getScreenshotDir() + '/' + file_name).c_str());
81 STUBBED("Unsupported image type");
86 struct jpeg_error_mgr pub; /* "public" fields */
87 jmp_buf setjmp_buffer; /* for return to caller */
89 typedef struct my_error_mgr * my_error_ptr;
91 static void my_error_exit(j_common_ptr cinfo)
93 struct my_error_mgr *err = (struct my_error_mgr *)cinfo->err;
94 longjmp(err->setjmp_buffer, 1);
97 /* stolen from public domain example.c code in libjpg distribution. */
98 static bool load_jpg(const char *file_name, ImageRec &tex)
100 struct jpeg_decompress_struct cinfo;
101 struct my_error_mgr jerr;
102 JSAMPROW buffer[1]; /* Output row buffer */
103 int row_stride; /* physical row width in output buffer */
104 FILE *infile = fopen(file_name, "rb");
109 cinfo.err = jpeg_std_error(&jerr.pub);
110 jerr.pub.error_exit = my_error_exit;
111 if (setjmp(jerr.setjmp_buffer)) {
112 jpeg_destroy_decompress(&cinfo);
117 jpeg_create_decompress(&cinfo);
118 jpeg_stdio_src(&cinfo, infile);
119 (void) jpeg_read_header(&cinfo, TRUE);
121 cinfo.out_color_space = JCS_RGB;
122 cinfo.quantize_colors = 0;
123 (void) jpeg_calc_output_dimensions(&cinfo);
124 (void) jpeg_start_decompress(&cinfo);
126 row_stride = cinfo.output_width * cinfo.output_components;
127 tex.sizeX = cinfo.output_width;
128 tex.sizeY = cinfo.output_height;
131 while (cinfo.output_scanline < cinfo.output_height) {
132 buffer[0] = (JSAMPROW)(char *)tex.data +
133 ((cinfo.output_height - 1) - cinfo.output_scanline) * row_stride;
134 (void) jpeg_read_scanlines(&cinfo, buffer, 1);
137 (void) jpeg_finish_decompress(&cinfo);
138 jpeg_destroy_decompress(&cinfo);
144 /* stolen from public domain example.c code in libpng distribution. */
145 static bool load_png(const char *file_name, ImageRec &tex)
147 bool hasalpha = false;
148 png_structp png_ptr = NULL;
149 png_infop info_ptr = NULL;
150 png_uint_32 width, height;
151 int bit_depth, color_type, interlace_type;
153 png_byte **row_pointers = NULL;
154 FILE *fp = fopen(file_name, "rb");
157 cerr << file_name << " not found" << endl;
161 png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
165 info_ptr = png_create_info_struct(png_ptr);
166 if (info_ptr == NULL)
169 if (setjmp(png_jmpbuf(png_ptr)))
172 png_init_io(png_ptr, fp);
173 png_read_png(png_ptr, info_ptr,
174 PNG_TRANSFORM_STRIP_16 | PNG_TRANSFORM_PACKING,
176 png_get_IHDR(png_ptr, info_ptr, &width, &height,
177 &bit_depth, &color_type, &interlace_type, NULL, NULL);
179 if (bit_depth != 8) // transform SHOULD handle this...
182 if (color_type & PNG_COLOR_MASK_PALETTE) // !!! FIXME?
185 if ((color_type & PNG_COLOR_MASK_COLOR) == 0) // !!! FIXME?
188 hasalpha = ((color_type & PNG_COLOR_MASK_ALPHA) != 0);
189 row_pointers = png_get_rows(png_ptr, info_ptr);
194 png_byte *dst = tex.data;
195 for (int i = height - 1; i >= 0; i--) {
196 png_byte *src = row_pointers[i];
197 for (unsigned j = 0; j < width; j++) {
209 png_byte *dst = tex.data;
210 int pitch = width * 4;
211 for (int i = height - 1; i >= 0; i--, dst += pitch)
212 memcpy(dst, row_pointers[i], pitch);
222 cerr << "There was a problem loading " << file_name << endl;
224 png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
230 static bool save_screenshot_png(const char *file_name)
233 png_structp png_ptr = NULL;
234 png_infop info_ptr = NULL;
237 fp = fopen(file_name, "wb");
241 png_bytep *row_pointers = new png_bytep[kContextHeight];
242 png_bytep screenshot = new png_byte[kContextWidth * kContextHeight * 3];
243 if ((!screenshot) || (!row_pointers))
247 glReadPixels(0, 0, kContextWidth, kContextHeight,
248 GL_RGB, GL_UNSIGNED_BYTE, screenshot);
249 if (glGetError() != GL_NO_ERROR)
252 for (int i = 0; i < kContextHeight; i++)
253 row_pointers[i] = screenshot + ((kContextWidth * ((kContextHeight - 1) - i)) * 3);
255 png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
259 info_ptr = png_create_info_struct(png_ptr);
260 if (info_ptr == NULL)
263 if (setjmp(png_jmpbuf(png_ptr)))
266 png_init_io(png_ptr, fp);
268 if (setjmp(png_jmpbuf(png_ptr)))
271 png_set_IHDR(png_ptr, info_ptr, kContextWidth, kContextHeight,
272 8, PNG_COLOR_TYPE_RGB, PNG_INTERLACE_NONE,
273 PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
275 png_write_info(png_ptr, info_ptr);
277 if (setjmp(png_jmpbuf(png_ptr)))
280 png_write_image(png_ptr, row_pointers);
282 if (setjmp(png_jmpbuf(png_ptr)))
285 png_write_end(png_ptr, NULL);
289 png_destroy_write_struct(&png_ptr, &info_ptr);
291 delete[] row_pointers;