Initial integration, lots of broken stuff
[supertux.git] / src / video / glutil.hpp
1 //  $Id$
2 //
3 //  SuperTux
4 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
5 //
6 //  This program is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU General Public License
8 //  as published by the Free Software Foundation; either version 2
9 //  of the License, or (at your option) any later version.
10 //
11 //  This program is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 //  GNU General Public License for more details.
15 //
16 //  You should have received a copy of the GNU General Public License
17 //  along with this program; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19 #ifndef __GLUTIL_HPP__
20 #define __GLUTIL_HPP__
21
22 typedef unsigned int GLenum;
23 typedef int GLint;
24
25 #define GL_ZERO 0x0
26 #define GL_ONE 0x1
27 #define GL_SRC_COLOR 0x0300
28 #define GL_SRC_ALPHA 0x0302
29 #define GL_ONE_MINUS_SRC_ALPHA 0x0303
30 #define GL_DST_COLOR 0x0306
31
32 //#include <config.h>
33
34 #if 0
35 #ifdef HAVE_OPENGL
36
37 #include <sstream>
38 #include <stdexcept>
39
40 #ifndef MACOSX
41 #include <GL/gl.h>
42 #include <GL/glext.h>
43 #else
44 #include <OpenGL/gl.h>
45 #include <OpenGL/glext.h>
46 #endif
47
48 static inline void check_gl_error(const char* message)
49 {
50 #ifdef DEBUG
51   GLenum error = glGetError();
52   if(error != GL_NO_ERROR) {
53     std::ostringstream msg;
54     msg << "OpenGLError while '" << message << "': ";
55     switch(error) {
56       case GL_INVALID_ENUM:
57         msg << "INVALID_ENUM: An unacceptable value is specified for an "
58                "enumerated argument.";
59         break;
60       case GL_INVALID_VALUE:
61         msg << "INVALID_VALUE: A numeric argument is out of range.";
62         break;
63       case GL_INVALID_OPERATION:
64         msg << "INVALID_OPERATION: The specified operation is not allowed "
65                "in the current state.";
66         break;
67       case GL_STACK_OVERFLOW:
68         msg << "STACK_OVERFLOW: This command would cause a stack overflow.";
69         break;
70       case GL_STACK_UNDERFLOW:
71         msg << "STACK_UNDERFLOW: This command would cause a stack underflow.";
72         break;
73       case GL_OUT_OF_MEMORY:
74         msg << "OUT_OF_MEMORY: There is not enough memory left to execute the "
75                "command.";
76         break;
77 #ifdef GL_TABLE_TOO_LARGE
78       case GL_TABLE_TOO_LARGE:
79         msg << "TABLE_TOO_LARGE: table is too large";
80         break;
81 #endif
82       default:
83         msg << "Unknown error (code " << error << ")";
84     }
85
86     throw std::runtime_error(msg.str());
87   }
88 #else
89   (void) message;
90 #endif
91 }
92
93 static inline void assert_gl(const char* message)
94 {
95 #ifdef DEBUG
96   check_gl_error(message);
97 #else
98   (void) message;
99 #endif
100 }
101
102 #else
103
104 #define GLenum int
105 #define GLint int
106 #define GL_SRC_ALPHA 0
107 #define GL_ONE_MINUS_SRC_ALPHA 1
108 #define GL_RGBA 2
109 #define GL_ONE 3
110
111 #endif
112 #endif
113
114 #endif