]> git.mxchange.org Git - simgear.git/blob - simgear/screen/jpgfactory.hxx
Initial revision of jpegfactory code for generating jpeg format screen dumps.
[simgear.git] / simgear / screen / jpgfactory.hxx
1 // jpgfactory.hxx --  jpeg frontend for TR library
2 //
3 // Written by Norman Vine, started August 2001.
4 //
5 // Copyright (C) 2001  Norman Vine - nhv@yahoo.com
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id:
22
23 #ifndef _FG_JPGFACTORY_HXX
24 #define _FG_JPGFACTORY_HXX
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29
30 #include <jpeglib.h>
31 #include <jerror.h>
32
33 #ifdef __cplusplus
34 }
35 #endif
36
37 #include <simgear/screen/tr.h>
38
39 /* should look at how VNC does this */
40 class trJpgFactory {
41     private:
42         int imageWidth;
43         int imageHeight;
44         GLubyte *tile;
45         GLubyte *buffer;
46
47         TRcontext *tr;
48         unsigned char *IMAGE;
49         int IMAGESIZE;
50
51         struct jpeg_compress_struct cinfo;
52         struct jpeg_error_mgr jerr;
53
54         int jpeg_init();
55         int compress();
56
57         typedef enum {
58             DEFAULT_XS = 320,
59             DEFAULT_YS = 240
60         } JPG_FACTORY_ENUM;
61
62     public:
63         trJpgFactory();
64         ~trJpgFactory();
65
66         int init(int width = 0, int height = 0 );
67         void destroy(int error = 0);
68
69         int render();
70         unsigned char *data() { return IMAGE ; }
71
72         struct jpeg_compress_struct *JPGinfo() { return &cinfo ; }
73 };
74
75 #endif // #ifndef _FG_JPGFACTORY_HXX