7569d1f2c4eaf5b8ec780a410be532135ed186fc
[freeglut] / src / freeglut_gamemode.c
1 /*
2  * freeglut_gamemode.c
3  *
4  * The game mode handling code.
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 16 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 #include <GL/freeglut.h>
29 #include "freeglut_internal.h"
30
31 /*
32  * TODO BEFORE THE STABLE RELEASE:
33  *
34  *  glutGameModeString()    -- missing
35  *  glutEnterGameMode()     -- X11 version
36  *  glutLeaveGameMode()     -- is that correct?
37  *  glutGameModeGet()       -- is that correct?
38  */
39
40
41 /* -- PRIVATE FUNCTIONS ---------------------------------------------------- */
42
43 static int xrandr_resize(int xsz, int ysz, int just_checking)
44 {
45     int res = -1;
46
47 #ifdef HAVE_X11_EXTENSIONS_XRANDR_H
48     int event_base, error_base;
49     Status st;
50     XRRScreenConfiguration *xrr_config;
51     XRRScreenSize *ssizes;
52     Rotation rot;
53     int i, ssizes_count, curr;
54     Time timestamp, cfg_timestamp;
55
56     /* must check at runtime for the availability of the extension */
57     if(!XRRQueryExtension(fgDisplay.Display, &event_base, &error_base)) {
58         return -1;
59     }
60
61     if(!(xrr_config = XRRGetScreenInfo(fgDisplay.Display, fgDisplay.RootWindow))) {
62         fgWarning("XRRGetScreenInfo failed");
63         return -1;
64     }
65     ssizes = XRRConfigSizes(xrr_config, &ssizes_count);
66     curr = XRRConfigCurrentConfiguration(xrr_config, &rot);
67     timestamp = XRRConfigTimes(xrr_config, &cfg_timestamp);
68
69     if(xsz == ssizes[curr].width && ysz == ssizes[curr].height) {
70         /* no need to switch, we're already in the requested mode */
71         res = 0;
72         goto done;
73     }
74
75     for(i=0; i<ssizes_count; i++) {
76         if(ssizes[i].width == xsz && ssizes[i].height == ysz) {
77             break;  /* found it */
78         }
79     }
80     if(i == ssizes_count)
81         goto done;
82
83     if(just_checking) {
84         res = 0;
85         goto done;
86     }
87
88     if((st = XRRSetScreenConfig(fgDisplay.Display, xrr_config, fgDisplay.RootWindow,
89                     i, rot, timestamp)) != 0) {
90         fgWarning("XRRSetScreenConfig failed");
91         goto done;
92     }
93     res = 0;
94
95 done:
96     XRRFreeScreenConfigInfo(xrr_config);
97 #endif
98     return res;
99 }
100
101
102 /*
103  * Remembers the current visual settings, so that
104  * we can change them and restore later...
105  */
106 static void fghRememberState( void )
107 {
108 #if TARGET_HOST_POSIX_X11
109     int event_base, error_base;
110
111 #   ifdef HAVE_X11_EXTENSIONS_XRANDR_H
112     if(XRRQueryExtension(fgDisplay.Display, &event_base, &error_base)) {
113         XRRScreenConfiguration *xrr_config;
114         XRRScreenSize *ssizes;
115         Rotation rot;
116         int ssize_count, curr;
117
118         if((xrr_config = XRRGetScreenInfo(fgDisplay.Display, fgDisplay.RootWindow))) {
119             ssizes = XRRConfigSizes(xrr_config, &ssize_count);
120             curr = XRRConfigCurrentConfiguration(xrr_config, &rot);
121
122             fgDisplay.prev_xsz = ssizes[curr].width;
123             fgDisplay.prev_ysz = ssizes[curr].height;
124             fgDisplay.prev_size_valid = 1;
125             XRRFreeScreenConfigInfo(xrr_config);
126             return;
127         }
128     }
129 #   endif
130
131     /*
132      * This highly depends on the XFree86 extensions,
133      * not approved as X Consortium standards
134      */
135 #   ifdef HAVE_X11_EXTENSIONS_XF86VMODE_H
136     if(!XF86VidModeQueryExtension(fgDisplay.Display, &event_base, &error_base)) {
137         return;
138     }
139
140     /*
141      * Remember the current ViewPort location of the screen to be able to
142      * restore the ViewPort on LeaveGameMode():
143      */
144     if( !XF86VidModeGetViewPort(
145              fgDisplay.Display,
146              fgDisplay.Screen,
147              &fgDisplay.DisplayViewPortX,
148              &fgDisplay.DisplayViewPortY ) )
149         fgWarning( "XF86VidModeGetViewPort failed" );
150
151     /*
152      * Remember the current pointer location before going fullscreen
153      * for restoring it later:
154      */
155     {
156         Window junk_window;
157         unsigned int mask;
158
159         XQueryPointer(
160             fgDisplay.Display, fgDisplay.RootWindow,
161             &junk_window, &junk_window,
162             &fgDisplay.DisplayPointerX, &fgDisplay.DisplayPointerY,
163             &fgDisplay.DisplayPointerX, &fgDisplay.DisplayPointerY, &mask
164         );
165     }
166
167     /* Query the current display settings: */
168     fgDisplay.DisplayModeValid =
169       XF86VidModeGetModeLine(
170         fgDisplay.Display,
171         fgDisplay.Screen,
172         &fgDisplay.DisplayModeClock,
173         &fgDisplay.DisplayMode
174     );
175
176     if( !fgDisplay.DisplayModeValid )
177             fgWarning( "XF86VidModeGetModeLine failed" );
178 #   endif
179
180 #elif TARGET_HOST_MS_WINDOWS
181
182 /*    DEVMODE devMode; */
183
184     /* Grab the current desktop settings... */
185
186 /* hack to get around my stupid cross-gcc headers */
187 #define FREEGLUT_ENUM_CURRENT_SETTINGS -1
188
189     EnumDisplaySettings( fgDisplay.DisplayName, FREEGLUT_ENUM_CURRENT_SETTINGS,
190                          &fgDisplay.DisplayMode );
191
192     /* Make sure we will be restoring all settings needed */
193     fgDisplay.DisplayMode.dmFields |=
194         DM_PELSWIDTH | DM_PELSHEIGHT | DM_BITSPERPEL | DM_DISPLAYFREQUENCY;
195
196 #endif
197 }
198
199 /*
200  * Restores the previously remembered visual settings
201  */
202 static void fghRestoreState( void )
203 {
204 #if TARGET_HOST_POSIX_X11
205
206 #   ifdef HAVE_X11_EXTENSIONS_XRANDR_H
207     if(fgDisplay.prev_size_valid) {
208         if(xrandr_resize(fgDisplay.prev_xsz, fgDisplay.prev_ysz, 0) != -1) {
209             fgDisplay.prev_size_valid = 0;
210             return;
211         }
212     }
213 #   endif
214
215
216 #   ifdef HAVE_X11_EXTENSIONS_XF86VMODE_H
217     /* Restore the remembered pointer position: */
218     XWarpPointer(
219         fgDisplay.Display, None, fgDisplay.RootWindow, 0, 0, 0, 0,
220         fgDisplay.DisplayPointerX, fgDisplay.DisplayPointerY
221     );
222
223     /*
224      * This highly depends on the XFree86 extensions,
225      * not approved as X Consortium standards
226      */
227
228     if( fgDisplay.DisplayModeValid )
229     {
230         XF86VidModeModeInfo** displayModes;
231         int i, displayModesCount;
232
233         if( !XF86VidModeGetAllModeLines(
234                  fgDisplay.Display,
235                  fgDisplay.Screen,
236                  &displayModesCount,
237                  &displayModes ) )
238         {
239             fgWarning( "XF86VidModeGetAllModeLines failed" );
240             return;
241         }
242
243
244         /*
245          * Check every of the modes looking for one that matches our demands.
246          * If we find one, switch to it and restore the remembered viewport.
247          */
248         for( i = 0; i < displayModesCount; i++ )
249         {
250             if(displayModes[ i ]->hdisplay == fgDisplay.DisplayMode.hdisplay &&
251                displayModes[ i ]->vdisplay == fgDisplay.DisplayMode.vdisplay &&
252                displayModes[ i ]->dotclock == fgDisplay.DisplayModeClock )
253             {
254                 if( !XF86VidModeSwitchToMode(
255                          fgDisplay.Display,
256                          fgDisplay.Screen,
257                          displayModes[ i ] ) )
258                 {
259                     fgWarning( "XF86VidModeSwitchToMode failed" );
260                     break;
261                 }
262
263                 if( !XF86VidModeSetViewPort(
264                          fgDisplay.Display,
265                          fgDisplay.Screen,
266                          fgDisplay.DisplayViewPortX,
267                          fgDisplay.DisplayViewPortY ) )
268                     fgWarning( "HAVE_X11_EXTENSIONS_XF86VMODE_H failed" );
269
270
271                 /*
272                  * For the case this would be the last X11 call the application
273                  * calls exit() we've to flush the X11 output queue to have the
274                  * commands sent to the X server before the application exits.
275                  */
276                 XFlush( fgDisplay.Display );
277
278                 break;
279             }
280         }
281         XFree( displayModes );
282     }
283
284 #   endif
285
286 #elif TARGET_HOST_MS_WINDOWS
287
288     /* Restore the previously remembered desktop display settings */
289     ChangeDisplaySettingsEx( fgDisplay.DisplayName,&fgDisplay.DisplayMode, 0,0,0 );
290
291 #endif
292 }
293
294 #if TARGET_HOST_POSIX_X11
295 #ifdef HAVE_X11_EXTENSIONS_XF86VMODE_H
296
297 /*
298  * Checks a single display mode settings against user's preferences.
299  */
300 static GLboolean fghCheckDisplayMode( int width, int height, int depth, int refresh )
301 {
302     /* The desired values should be stored in fgState structure... */
303     return ( width == fgState.GameModeSize.X ) &&
304            ( height == fgState.GameModeSize.Y ) &&
305            ( depth == fgState.GameModeDepth ) &&
306            ( refresh == fgState.GameModeRefresh );
307 }
308
309 /*
310  * Checks all display modes settings against user's preferences.
311  * Returns the mode number found or -1 if none could be found.
312  */
313 static int fghCheckDisplayModes( GLboolean exactMatch, int displayModesCount, XF86VidModeModeInfo** displayModes )
314 {
315     int i;
316     for( i = 0; i < displayModesCount; i++ )
317     {
318         /* Compute the displays refresh rate, dotclock comes in kHz. */
319         int refresh = ( displayModes[ i ]->dotclock * 1000 ) /
320                       ( displayModes[ i ]->htotal * displayModes[ i ]->vtotal );
321
322         if( fghCheckDisplayMode( displayModes[ i ]->hdisplay,
323                                  displayModes[ i ]->vdisplay,
324                                  fgState.GameModeDepth,
325                                  ( exactMatch ? refresh : fgState.GameModeRefresh ) ) ) {
326             if (!exactMatch)
327             {
328                 /* Update the chosen refresh rate, otherwise a
329                  * glutGameModeGet(GLUT_GAME_MODE_REFRESH_RATE) would not
330                  * return the right values
331                  */
332                 fgState.GameModeRefresh = refresh;
333             }
334
335             return i;
336         }
337     }
338     return -1;
339 }
340
341 #endif
342 #endif
343
344 /*
345  * Changes the current display mode to match user's settings
346  */
347 static GLboolean fghChangeDisplayMode( GLboolean haveToTest )
348 {
349     GLboolean success = GL_FALSE;
350 #if TARGET_HOST_POSIX_X11
351
352     /* first try to use XRandR, then fallback to XF86VidMode */
353 #   ifdef HAVE_X11_EXTENSIONS_XRANDR_H
354     if(xrandr_resize(fgState.GameModeSize.X, fgState.GameModeSize.Y, haveToTest) != -1) {
355         return GL_TRUE;
356     }
357 #   endif
358
359
360     /*
361      * This highly depends on the XFree86 extensions,
362      * not approved as X Consortium standards
363      */
364 #   ifdef HAVE_X11_EXTENSIONS_XF86VMODE_H
365
366     /*
367      * This is also used by applications which check modes by calling
368      * glutGameModeGet(GLUT_GAME_MODE_POSSIBLE), so allow the check:
369      */
370     if( haveToTest || fgDisplay.DisplayModeValid )
371     {
372         XF86VidModeModeInfo** displayModes;
373         int i, displayModesCount;
374
375         /* current display mode was queried in fghRememberState
376          * set defaulted values to the current display mode's
377          */
378         if (fgState.GameModeSize.X == -1)
379         {
380             fgState.GameModeSize.X = fgDisplay.DisplayMode.hdisplay;
381         }
382         if (fgState.GameModeSize.Y == -1)
383         {
384             fgState.GameModeSize.Y = fgDisplay.DisplayMode.vdisplay;
385         }
386         if (fgState.GameModeDepth == -1)
387         {
388             /* can't get color depth from this, nor can we change it, do nothing
389              * TODO: get with XGetVisualInfo()? but then how to set?
390              */
391         }
392         if (fgState.GameModeRefresh != -1)
393         {
394             /* Compute the displays refresh rate, dotclock comes in kHz. */
395             int refresh = ( fgDisplay.DisplayModeClock * 1000 ) /
396                 ( fgDisplay.DisplayMode.htotal * fgDisplay.DisplayMode.vtotal );
397
398             fgState.GameModeRefresh = refresh;
399         }
400
401         /* query all possible display modes */
402         if( !XF86VidModeGetAllModeLines(
403                  fgDisplay.Display,
404                  fgDisplay.Screen,
405                  &displayModesCount,
406                  &displayModes ) )
407         {
408             fgWarning( "XF86VidModeGetAllModeLines failed" );
409             return success;
410         }
411
412
413         /*
414          * Check every of the modes looking for one that matches our demands,
415          * ignoring the refresh rate if no exact match could be found.
416          */
417         i = fghCheckDisplayModes( GL_TRUE, displayModesCount, displayModes );
418         if( i < 0 ) {
419             i = fghCheckDisplayModes( GL_FALSE, displayModesCount, displayModes );
420         }
421         success = ( i < 0 ) ? GL_FALSE : GL_TRUE;
422
423         if( !haveToTest && success ) {
424             if( !XF86VidModeSwitchToMode(
425                      fgDisplay.Display,
426                      fgDisplay.Screen,
427                      displayModes[ i ] ) )
428                 fgWarning( "XF86VidModeSwitchToMode failed" );
429         }
430
431         XFree( displayModes );
432     }
433
434 #   else
435
436     /*
437      * XXX warning fghChangeDisplayMode: missing XFree86 video mode extensions,
438      * XXX game mode will not change screen resolution when activated
439      */
440     success = GL_TRUE;
441
442 #   endif
443
444 #elif TARGET_HOST_MS_WINDOWS
445
446     DEVMODE  devMode;
447     char *fggmstr = NULL;
448
449     success = GL_FALSE;
450
451     EnumDisplaySettings( fgDisplay.DisplayName, -1, &devMode ); 
452     devMode.dmFields = 0;
453
454     if (fgState.GameModeSize.X!=-1)
455     {
456         devMode.dmPelsWidth  = fgState.GameModeSize.X;
457         devMode.dmFields |= DM_PELSWIDTH;
458     }
459     if (fgState.GameModeSize.Y!=-1)
460     {
461         devMode.dmPelsHeight  = fgState.GameModeSize.Y;
462         devMode.dmFields |= DM_PELSHEIGHT;
463     }
464     if (fgState.GameModeDepth!=-1)
465     {
466         devMode.dmBitsPerPel  = fgState.GameModeDepth;
467         devMode.dmFields |= DM_BITSPERPEL;
468     }
469     if (fgState.GameModeRefresh!=-1)
470     {
471         devMode.dmDisplayFrequency  = fgState.GameModeRefresh;
472         devMode.dmFields |= DM_DISPLAYFREQUENCY;
473     }
474
475     switch ( ChangeDisplaySettingsEx(fgDisplay.DisplayName, &devMode, NULL, haveToTest ? CDS_TEST : CDS_FULLSCREEN , NULL) )
476     {
477     case DISP_CHANGE_SUCCESSFUL:
478         success = GL_TRUE;
479
480         /* update vars in case if windows switched to proper mode */
481         EnumDisplaySettings( fgDisplay.DisplayName, FREEGLUT_ENUM_CURRENT_SETTINGS, &devMode );
482         fgState.GameModeSize.X  = devMode.dmPelsWidth;        
483         fgState.GameModeSize.Y  = devMode.dmPelsHeight;
484         fgState.GameModeDepth   = devMode.dmBitsPerPel;
485         fgState.GameModeRefresh = devMode.dmDisplayFrequency;
486                 break;
487     case DISP_CHANGE_RESTART:
488         fggmstr = "The computer must be restarted for the graphics mode to work.";
489         break;
490     case DISP_CHANGE_BADFLAGS:
491         fggmstr = "An invalid set of flags was passed in.";
492         break;
493     case DISP_CHANGE_BADPARAM:
494         fggmstr = "An invalid parameter was passed in. This can include an invalid flag or combination of flags.";
495         break;
496     case DISP_CHANGE_FAILED:
497         fggmstr = "The display driver failed the specified graphics mode.";
498         break;
499     case DISP_CHANGE_BADMODE:
500         fggmstr = "The graphics mode is not supported.";
501         break;
502     default:
503         fggmstr = "Unknown error in graphics mode???"; /* dunno if it is possible,MSDN does not mention any other error */
504         break;
505     }
506
507     if ( !success )
508         fgWarning(fggmstr); /* I'd rather get info whats going on in my program than wonder about */
509                             /* magic happenings behind my back, its lib for devels at last ;) */
510 #endif
511
512     return success;
513 }
514
515
516 /* -- INTERFACE FUNCTIONS -------------------------------------------------- */
517
518 /*
519  * Sets the game mode display string
520  */
521 void FGAPIENTRY glutGameModeString( const char* string )
522 {
523     int width = -1, height = -1, depth = -1, refresh = -1;
524
525     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutGameModeString" );
526
527     /*
528      * This one seems a bit easier than glutInitDisplayString. The bad thing
529      * about it that I was unable to find the game mode string definition, so
530      * that I assumed it is: "[width]x[height]:[depth]@[refresh rate]", which
531      * appears in all GLUT game mode programs I have seen to date.
532      */
533     if( sscanf( string, "%ix%i:%i@%i", &width, &height, &depth, &refresh ) !=
534         4 )
535         if( sscanf( string, "%ix%i:%i", &width, &height, &depth ) != 3 )
536             if( sscanf( string, "%ix%i@%i", &width, &height, &refresh ) != 3 )
537                 if( sscanf( string, "%ix%i", &width, &height ) != 2 )
538                     if( sscanf( string, ":%i@%i", &depth, &refresh ) != 2 )
539                         if( sscanf( string, ":%i", &depth ) != 1 )
540                             if( sscanf( string, "@%i", &refresh ) != 1 )
541                                 fgWarning(
542                                     "unable to parse game mode string `%s'",
543                                     string
544                                 );
545
546     /* All values not specified are now set to -1, which means those
547      * aspects of the current display mode are not changed in
548      * fghChangeDisplayMode() above.
549      */
550     fgState.GameModeSize.X  = width;
551     fgState.GameModeSize.Y  = height;
552     fgState.GameModeDepth   = depth;
553     fgState.GameModeRefresh = refresh;
554 }
555
556
557
558 /*
559  * Enters the game mode
560  */
561 int FGAPIENTRY glutEnterGameMode( void )
562 {
563     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutEnterGameMode" );
564
565     if( fgStructure.GameModeWindow )
566         fgAddToWindowDestroyList( fgStructure.GameModeWindow );
567     else
568         fghRememberState( );
569
570     if( ! fghChangeDisplayMode( GL_FALSE ) )
571     {
572         fgWarning( "failed to change screen settings" );
573         return 0;
574     }
575
576     fgStructure.GameModeWindow = fgCreateWindow(
577         NULL, "FREEGLUT", GL_TRUE, 0, 0,
578         GL_TRUE, fgState.GameModeSize.X, fgState.GameModeSize.Y,
579         GL_TRUE, GL_FALSE
580     );
581
582     fgStructure.GameModeWindow->State.Width  = fgState.GameModeSize.X;
583     fgStructure.GameModeWindow->State.Height = fgState.GameModeSize.Y;
584     fgStructure.GameModeWindow->State.NeedToResize = GL_TRUE;
585
586 #if TARGET_HOST_POSIX_X11
587
588     /*
589      * Sync needed to avoid a real race, the Xserver must have really created
590      * the window before we can grab the pointer into it:
591      */
592     XSync( fgDisplay.Display, False );
593
594     /*
595      * Grab the pointer to confine it into the window after the calls to
596      * XWrapPointer() which ensure that the pointer really enters the window.
597      *
598      * We also need to wait here until XGrabPointer() returns GrabSuccess,
599      * otherwise the new window is not viewable yet and if the next function
600      * (XSetInputFocus) is called with a not yet viewable window, it will exit
601      * the application which we have to aviod, so wait until it's viewable:
602      */
603     while( GrabSuccess != XGrabPointer(
604                fgDisplay.Display, fgStructure.GameModeWindow->Window.Handle,
605                TRUE,
606                ButtonPressMask | ButtonReleaseMask | ButtonMotionMask
607                | PointerMotionMask,
608                GrabModeAsync, GrabModeAsync,
609                fgStructure.GameModeWindow->Window.Handle, None, CurrentTime) )
610         usleep( 100 );
611
612     /*
613      * Change input focus to the new window. This will exit the application
614      * if the new window is not viewable yet, see the XGrabPointer loop above.
615      */
616     XSetInputFocus(
617         fgDisplay.Display,
618         fgStructure.GameModeWindow->Window.Handle,
619         RevertToNone,
620         CurrentTime
621     );
622
623     /* Move the Pointer to the middle of the fullscreen window */
624     XWarpPointer(
625         fgDisplay.Display,
626         None,
627         fgDisplay.RootWindow,
628         0, 0, 0, 0,
629         fgState.GameModeSize.X/2, fgState.GameModeSize.Y/2
630     );
631
632 #   ifdef HAVE_X11_EXTENSIONS_XF86VMODE_H
633
634     if( fgDisplay.DisplayModeValid )
635     {
636         int x, y;
637         Window child;
638
639         /* Change to viewport to the window topleft edge: */
640         if( !XF86VidModeSetViewPort( fgDisplay.Display, fgDisplay.Screen, 0, 0 ) )
641             fgWarning( "XF86VidModeSetViewPort failed" );
642
643         /*
644          * Final window repositioning: It could be avoided using an undecorated
645          * window using override_redirect, but this * would possily require
646          * more changes and investigation.
647          */
648
649         /* Get the current postion of the drawable area on screen */
650         XTranslateCoordinates(
651             fgDisplay.Display,
652             fgStructure.CurrentWindow->Window.Handle,
653             fgDisplay.RootWindow,
654             0, 0, &x, &y,
655             &child
656         );
657
658         /* Move the decorataions out of the topleft corner of the display */
659         XMoveWindow( fgDisplay.Display, fgStructure.CurrentWindow->Window.Handle,
660                      -x, -y);
661     }
662
663 #endif
664
665     /* Grab the keyboard, too */
666     XGrabKeyboard(
667         fgDisplay.Display,
668         fgStructure.GameModeWindow->Window.Handle,
669         FALSE,
670         GrabModeAsync, GrabModeAsync,
671         CurrentTime
672     );
673
674 #endif
675
676     return fgStructure.GameModeWindow->ID;
677 }
678
679 /*
680  * Leaves the game mode
681  */
682 void FGAPIENTRY glutLeaveGameMode( void )
683 {
684     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutLeaveGameMode" );
685
686     freeglut_return_if_fail( fgStructure.GameModeWindow );
687
688     fgAddToWindowDestroyList( fgStructure.GameModeWindow );
689     fgStructure.GameModeWindow = NULL;
690
691 #if TARGET_HOST_POSIX_X11
692
693     XUngrabPointer( fgDisplay.Display, CurrentTime );
694     XUngrabKeyboard( fgDisplay.Display, CurrentTime );
695
696 #endif
697
698     fghRestoreState();
699 }
700
701 /*
702  * Returns information concerning the freeglut game mode
703  */
704 int FGAPIENTRY glutGameModeGet( GLenum eWhat )
705 {
706     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutGameModeGet" );
707
708     switch( eWhat )
709     {
710     case GLUT_GAME_MODE_ACTIVE:
711         return !!fgStructure.GameModeWindow;
712
713     case GLUT_GAME_MODE_POSSIBLE:
714         return fghChangeDisplayMode( GL_TRUE );
715
716     case GLUT_GAME_MODE_WIDTH:
717         return fgState.GameModeSize.X;
718
719     case GLUT_GAME_MODE_HEIGHT:
720         return fgState.GameModeSize.Y;
721
722     case GLUT_GAME_MODE_PIXEL_DEPTH:
723         return fgState.GameModeDepth;
724
725     case GLUT_GAME_MODE_REFRESH_RATE:
726         return fgState.GameModeRefresh;
727
728     case GLUT_GAME_MODE_DISPLAY_CHANGED:
729         /*
730          * This is true if the game mode has been activated successfully..
731          */
732         return !!fgStructure.GameModeWindow;
733     }
734
735     fgWarning( "Unknown gamemode get: %d", eWhat );
736     return -1;
737 }
738
739 /*** END OF FILE ***/