]> git.mxchange.org Git - simgear.git/blob - simgear/screen/jpgfactory.hxx
Reverse the declaration order. jpgRenderFrame (formerly known as trRenderFrame) is...
[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
40 extern void (*jpgRenderFrame)(void);
41
42 /* should look at how VNC does this */
43 class trJpgFactory {
44     private:
45         int imageWidth;
46         int imageHeight;
47         GLubyte *tile;
48         GLubyte *buffer;
49
50         TRcontext *tr;
51         unsigned char *IMAGE;
52         int IMAGESIZE;
53
54         struct jpeg_compress_struct cinfo;
55         struct jpeg_error_mgr jerr;
56
57         int jpeg_init();
58         int compress();
59
60         typedef enum {
61             DEFAULT_XS = 320,
62             DEFAULT_YS = 240
63         } JPG_FACTORY_ENUM;
64
65     public:
66         trJpgFactory();
67         ~trJpgFactory();
68
69         int init(int width = 0, int height = 0 );
70         void destroy(int error = 0);
71
72         int render();
73         unsigned char *data() { return IMAGE ; }
74
75         struct jpeg_compress_struct *JPGinfo() { return &cinfo ; }
76 };
77
78 #endif // #ifndef _FG_JPGFACTORY_HXX