e232d6de8840b972ceebc4179fa227cd396e5a6f
[freeglut] / src / 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 #include <GL/freeglut.h>
33 #include "freeglut_internal.h"
34
35 /*
36  * TODO BEFORE THE STABLE RELEASE:
37  *
38  *  glutSetColor()     --
39  *  glutGetColor()     --
40  *  glutCopyColormap() --
41  *  glutSetKeyRepeat() -- this is evil and should be removed from API
42  */
43
44 /* -- INTERFACE FUNCTIONS -------------------------------------------------- */
45
46 /*
47  * This functions checks if an OpenGL extension is supported or not
48  *
49  * XXX Wouldn't this be simpler and clearer if we used strtok()?
50  */
51 int FGAPIENTRY glutExtensionSupported( const char* extension )
52 {
53   const char *extensions, *start;
54   const int len = strlen( extension );
55
56   /*
57    * Make sure there is a current window, and thus a current context available
58    */
59   freeglut_assert_ready;
60   freeglut_return_val_if_fail( fgStructure.Window != NULL, 0 );
61
62   if (strchr(extension, ' '))
63     return 0;
64   start = extensions = (const char *) glGetString(GL_EXTENSIONS);
65
66   /* XXX consider printing a warning to stderr that there's no current
67    * rendering context.
68    */
69   freeglut_return_val_if_fail( extensions != NULL, 0 );
70
71   while (1) {
72      const char *p = strstr(extensions, extension);
73      if (!p)
74         return 0;  /* not found */
75      /* check that the match isn't a super string */
76      if ((p == start || p[-1] == ' ') && (p[len] == ' ' || p[len] == 0))
77         return 1;
78      /* skip the false match and continue */
79      extensions = p + len;
80   }
81
82   return 0 ;
83 }
84
85 /*
86  * This function reports all the OpenGL errors that happened till now
87  */
88 void FGAPIENTRY glutReportErrors( void )
89 {
90     GLenum error;
91     while( ( error = glGetError() ) != GL_NO_ERROR )
92         fgWarning( "GL error: %s", gluErrorString( error ) );
93 }
94
95 /*
96  * Control the auto-repeat of keystrokes to the current window
97  */
98 void FGAPIENTRY glutIgnoreKeyRepeat( int ignore )
99 {
100     freeglut_assert_ready;
101     freeglut_assert_window;
102
103     fgStructure.Window->State.IgnoreKeyRepeat = ignore ? GL_TRUE : GL_FALSE;
104 }
105
106 /*
107  * Set global auto-repeat of keystrokes
108  *
109  * RepeatMode should be either:
110  *    GLUT_KEY_REPEAT_OFF
111  *    GLUT_KEY_REPEAT_ON
112  *    GLUT_KEY_REPEAT_DEFAULT
113  */
114 void FGAPIENTRY glutSetKeyRepeat( int repeatMode )
115 {
116     freeglut_assert_ready;
117
118     switch( repeatMode )
119     {
120     case GLUT_KEY_REPEAT_OFF:
121     case GLUT_KEY_REPEAT_ON:
122      fgState.KeyRepeat = repeatMode;
123      break;
124
125     case GLUT_KEY_REPEAT_DEFAULT:
126      fgState.KeyRepeat = GLUT_KEY_REPEAT_ON;
127      break;
128
129     default:
130         fgError ("Invalid glutSetKeyRepeat mode: %d", repeatMode);
131         break;
132     }
133 }
134
135 /*
136  * Forces the joystick callback to be executed
137  */
138 void FGAPIENTRY glutForceJoystickFunc( void )
139 {
140     freeglut_assert_ready;
141     freeglut_return_if_fail( fgStructure.Window != NULL );
142     freeglut_return_if_fail( FETCH_WCB( *( fgStructure.Window ), Joystick ) );
143     fgJoystickPollWindow( fgStructure.Window );
144 }
145
146 /*
147  *
148  */
149 void FGAPIENTRY glutSetColor( int nColor, GLfloat red, GLfloat green, GLfloat blue )
150 {
151     /*
152      *
153      */
154 }
155
156 /*
157  *
158  */
159 GLfloat FGAPIENTRY glutGetColor( int color, int component )
160 {
161     /*
162      *
163      */
164     return( 0.0f );
165 }
166
167 /*
168  *
169  */
170 void FGAPIENTRY glutCopyColormap( int window )
171 {
172     /*
173      *
174      */
175 }
176
177 /*** END OF FILE ***/