]> git.mxchange.org Git - simgear.git/blob - simgear/screen/screen-dump.cxx
Merge branch 'ehofman/sound'
[simgear.git] / simgear / screen / screen-dump.cxx
1 // screen-dump.cxx -- dump a copy of the opengl screen buffer to a file
2 //
3 // Contributed by Richard Kaszeta <bofh@me.umn.edu>, started October 1999.
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Library General Public
7 // License as published by the Free Software Foundation; either
8 // version 2 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // Library General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18 //
19 // $Id$
20
21
22 #ifdef HAVE_CONFIG_H
23 #  include <simgear_config.h>
24 #endif
25
26 #if defined(__CYGWIN__)  /* && !defined(USING_X) */
27 #define WIN32
28 #endif
29
30 #if defined(WIN32)  /* MINGW and MSC predefine WIN32 */
31 # include <windows.h>
32 #endif
33
34 #include <stdio.h>
35 #include <stdlib.h>
36 #include <limits.h>
37
38 #include <simgear/compiler.h>
39
40 #include <osg/Image>
41 #include <osgDB/WriteFile>
42
43 #include "screen-dump.hxx"
44
45
46 #define RGB3 3                  // 3 bytes of color info per pixel
47 #define RGBA 4                  // 4 bytes of color+alpha info
48
49 bool sg_glWritePPMFile(const char *filename, GLubyte *buffer, int win_width, int win_height, int mode)
50 {
51     int i, j, k, q;
52     unsigned char *ibuffer;
53     FILE *fp;
54     int pixelSize = mode==GL_RGBA?4:3;
55
56     ibuffer = (unsigned char *) malloc(win_width*win_height*RGB3);
57
58     if ( (fp = fopen(filename, "wb")) == NULL ) {
59         free(ibuffer);
60         printf("Warning: cannot open %s\n", filename);
61         return false;
62     }
63
64     fprintf(fp, "P6\n# CREATOR: glReadPixel()\n%d %d\n%d\n",
65             win_width, win_height, UCHAR_MAX);
66     q = 0;
67     for (i = 0; i < win_height; i++)
68         for (j = 0; j < win_width; j++)
69             for (k = 0; k < RGB3; k++)
70                 ibuffer[q++] = (unsigned char)
71                     *(buffer + (pixelSize*((win_height-1-i)*win_width+j)+k));
72     fwrite(ibuffer, sizeof(unsigned char), RGB3*win_width*win_height, fp);
73     fclose(fp);
74     free(ibuffer);
75
76     printf("wrote file '%s' (%d x %d pixels, %d bytes)\n",
77            filename, win_width, win_height, RGB3*win_width*win_height);
78     return true;
79 }
80
81
82 // dump the screen buffer to a png file
83 bool sg_glDumpWindow(const char *filename, int win_width, int win_height) {
84   osg::ref_ptr<osg::Image> img(new osg::Image);
85   img->readPixels(0,0, win_width, win_height, GL_RGB, GL_UNSIGNED_BYTE);
86   osgDB::writeImageFile(*img, filename);
87   return true;
88 }
89