Removed glib dependancy
[freeglut] / freeglut-1.3 / freeglut_misc.c
1 /*
2  * freeglut_misc.c
3  *
4  * Functions that didn't fit anywhere else...
5  *
6  * Copyright (c) 1999-2000 Pawel W. Olszta. All Rights Reserved.
7  * Written by Pawel W. Olszta, <olszta@sourceforge.net>
8  * Creation date: Thu Dec 9 1999
9  *
10  * Permission is hereby granted, free of charge, to any person obtaining a
11  * copy of this software and associated documentation files (the "Software"),
12  * to deal in the Software without restriction, including without limitation
13  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
14  * and/or sell copies of the Software, and to permit persons to whom the
15  * Software is furnished to do so, subject to the following conditions:
16  *
17  * The above copyright notice and this permission notice shall be included
18  * in all copies or substantial portions of the Software.
19  *
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
23  * PAWEL W. OLSZTA BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
24  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
25  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26  */
27
28 #ifdef HAVE_CONFIG_H
29 #include "config.h"
30 #endif
31
32 #define  G_LOG_DOMAIN  "freeglut-misc"
33
34 #include "../include/GL/freeglut.h"
35 #include "../include/GL/freeglut_internal.h"
36
37 /*
38  * TODO BEFORE THE STABLE RELEASE:
39  *
40  *  glutSetColor()     --
41  *  glutGetColor()     --
42  *  glutCopyColormap() --
43  *  glutSetKeyRepeat() -- this is evil and should be removed from API
44  */
45
46 /* -- INTERFACE FUNCTIONS -------------------------------------------------- */
47
48 /*
49  * This functions checks if an OpenGL extension is supported or not
50  */
51 int FGAPIENTRY glutExtensionSupported( const char* extension )
52 {
53     const char *extensions;
54     const char *ptr;
55     int i;
56
57     /*
58      * Make sure there is a current window, and thus -- a current context available
59      */
60     freeglut_assert_ready;
61     freeglut_return_val_if_fail( fgStructure.Window != NULL, 0 );
62
63     /*
64      * Not it is safe to query the extenstions
65      */
66     extensions = glGetString(GL_EXTENSIONS);
67
68     freeglut_return_val_if_fail( extensions != NULL, 0 );
69
70     /*
71      * Check if the extension itself looks valid
72      */
73     for( i=0; i<strlen( extension ); i++ )
74         if( extension[ i ] == ' ' )
75             return( 0 );
76
77     /*
78      * Look for our extension
79      */
80     for (ptr = extensions; *ptr;)
81     {
82         const char *str = extension;
83         char c;
84
85         while ( (c = *(str++)) )
86         {
87             if (*ptr != c)
88                 goto next;
89             ptr++;
90         }
91         if ( !(c = *ptr) || c == ' ' )
92             return 1;
93     next:
94         while ( (c = *ptr) && c != ' ' )
95             ptr++;
96         while (*ptr == ' ')
97             ptr++;
98     }
99
100     return 0;
101 }
102
103 /*
104  * This function reports all the errors that happened till now
105  */
106 void FGAPIENTRY glutReportErrors( void )
107 {
108     GLenum error = glGetError();
109
110     /*
111      * Keep reporting errors as long as there are any...
112      */
113     while( error != GL_NO_ERROR )
114     {
115         /*
116          * Print the current error
117          */
118 #       undef  G_LOG_DOMAIN
119 #       define G_LOG_DOMAIN ((gchar *) 0)
120
121         fgWarning( "GL error: %s", gluErrorString( error ) );
122
123 #       undef   G_LOG_DOMAIN
124 #       define  G_LOG_DOMAIN  "freeglut_misc.c"
125
126         /*
127          * Grab the next error value
128          */
129         error = glGetError();
130     };
131 }
132
133 /*
134  * Turns the ignore key auto repeat feature on and off
135  */
136 void FGAPIENTRY glutIgnoreKeyRepeat( int ignore )
137 {
138     /*
139      * This is simple and not demanging...
140      */
141     fgState.IgnoreKeyRepeat = ignore ? TRUE : FALSE;
142 }
143
144 /*
145  * Hints the window system whether to generate key auto repeat, or not. This is evil.
146  */
147 void FGAPIENTRY glutSetKeyRepeat( int repeatMode )
148 {
149 #if TARGET_HOST_UNIX_X11
150
151     freeglut_assert_ready;
152
153     /*
154      * This is really evil, but let's have this done.
155      */
156     switch( repeatMode )
157     {
158     case GLUT_KEY_REPEAT_OFF:   XAutoRepeatOff( fgDisplay.Display ); break;
159     case GLUT_KEY_REPEAT_ON:    XAutoRepeatOn( fgDisplay.Display );  break;
160     case GLUT_KEY_REPEAT_DEFAULT:
161         {
162             XKeyboardState keyboardState;
163
164             /*
165              * Query the current keyboard state
166              */
167             XGetKeyboardControl( fgDisplay.Display, &keyboardState );
168
169             /*
170              * Set the auto key repeat basing on the global settings
171              */
172             glutSetKeyRepeat(
173                 keyboardState.global_auto_repeat == AutoRepeatModeOn ?
174                 GLUT_KEY_REPEAT_ON : GLUT_KEY_REPEAT_OFF
175             );
176         }
177         break;
178
179     default:
180         /*
181          * Whoops, this was not expected at all
182          */
183         break;
184     }
185
186 #endif
187 }
188
189 /*
190  * Forces the joystick callback to be executed
191  */
192 void FGAPIENTRY glutForceJoystickFunc( void )
193 {
194     freeglut_assert_ready;
195
196     /*
197      * Is there a current window selected?
198      */
199     freeglut_return_if_fail( fgStructure.Window != NULL );
200
201     /*
202      * Check if there is a joystick callback hooked to the current window
203      */
204     freeglut_return_if_fail( fgStructure.Window->Callbacks.Joystick != NULL );
205
206     /*
207      * Poll the joystick now, using the current window's joystick callback
208      */
209     fgJoystickPollWindow( fgStructure.Window );
210 }
211
212 /*
213  *
214  */
215 void FGAPIENTRY glutSetColor( int nColor, GLfloat red, GLfloat green, GLfloat blue )
216 {
217     /*
218      *
219      */
220 }
221
222 /*
223  *
224  */
225 GLfloat FGAPIENTRY glutGetColor( int color, int component )
226 {
227     /*
228      *
229      */
230     return( 0.0f );
231 }
232
233 /*
234  *
235  */
236 void FGAPIENTRY glutCopyColormap( int window )
237 {
238     /*
239      *
240      */
241 }
242
243 /*** END OF FILE ***/