]> git.mxchange.org Git - simgear.git/blob - simgear/screen/jpgfactory.hxx
Merge branches 'ehofman/config' and 'ehofman/dlerror'
[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 #ifdef HAVE_WINDOWS_H
31 #  define XMD_H // to avoid INT32 redefinition
32 #endif
33
34 #include <stdlib.h>
35 #include <stdio.h>
36 #include <jpeglib.h>
37 #include <jerror.h>
38
39 #ifdef __cplusplus
40 }
41 #endif
42
43 #include <simgear/screen/tr.h>
44
45
46 extern void (*jpgRenderFrame)(void);
47
48 /* should look at how VNC does this */
49 class trJpgFactory {
50     private:
51         int imageWidth;
52         int imageHeight;
53         GLubyte *tile;
54         GLubyte *buffer;
55
56         TRcontext *tr;
57         unsigned char *IMAGE;
58         int IMAGESIZE;
59
60         struct jpeg_compress_struct cinfo;
61         struct jpeg_error_mgr jerr;
62
63         int jpeg_init();
64         int compress();
65
66         typedef enum {
67             DEFAULT_XS = 320,
68             DEFAULT_YS = 240
69         } JPG_FACTORY_ENUM;
70
71     public:
72         trJpgFactory();
73         ~trJpgFactory();
74
75         int init(int width = 0, int height = 0 );
76         void destroy(int error = 0);
77
78         int render();
79         void setFrustum(GLdouble left, GLdouble right,
80                GLdouble bottom, GLdouble top,
81                GLdouble zNear, GLdouble zFar) { trFrustum(tr, left, right, bottom, top, zNear, zFar); }
82
83         unsigned char *data() { return IMAGE ; }
84
85         struct jpeg_compress_struct *JPGinfo() { return &cinfo ; }
86 };
87
88 #endif // #ifndef _FG_JPGFACTORY_HXX