]> git.mxchange.org Git - simgear.git/blob - simgear/screen/jpgfactory.hxx
make headers include headers they depend on, don't rely on the c(xx)
[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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, 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 <stdlib.h>
31 #include <stdio.h>
32 #include <jpeglib.h>
33 #include <jerror.h>
34
35 #ifdef __cplusplus
36 }
37 #endif
38
39 #include <simgear/screen/tr.h>
40
41
42 extern void (*jpgRenderFrame)(void);
43
44 /* should look at how VNC does this */
45 class trJpgFactory {
46     private:
47         int imageWidth;
48         int imageHeight;
49         GLubyte *tile;
50         GLubyte *buffer;
51
52         TRcontext *tr;
53         unsigned char *IMAGE;
54         int IMAGESIZE;
55
56         struct jpeg_compress_struct cinfo;
57         struct jpeg_error_mgr jerr;
58
59         int jpeg_init();
60         int compress();
61
62         typedef enum {
63             DEFAULT_XS = 320,
64             DEFAULT_YS = 240
65         } JPG_FACTORY_ENUM;
66
67     public:
68         trJpgFactory();
69         ~trJpgFactory();
70
71         int init(int width = 0, int height = 0 );
72         void destroy(int error = 0);
73
74         int render();
75         unsigned char *data() { return IMAGE ; }
76
77         struct jpeg_compress_struct *JPGinfo() { return &cinfo ; }
78 };
79
80 #endif // #ifndef _FG_JPGFACTORY_HXX