4 * Freeglut state query methods.
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
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:
17 * The above copyright notice and this permission notice shall be included
18 * in all copies or substantial portions of the Software.
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.
32 #define G_LOG_DOMAIN "freeglut-state"
34 #include "../include/GL/freeglut.h"
35 #include "freeglut_internal.h"
38 * TODO BEFORE THE STABLE RELEASE:
40 * glutGet() -- X11 tests passed, but check if all enums
41 * handled (what about Win32?)
42 * glutDeviceGet() -- X11 tests passed, but check if all enums
43 * handled (what about Win32?)
44 * glutGetModifiers() -- OK, but could also remove the limitation
45 * glutLayerGet() -- what about GLUT_NORMAL_DAMAGED?
47 * The fail-on-call policy will help adding the most needed things imho.
50 /* -- LOCAL DEFINITIONS ---------------------------------------------------- */
52 /* -- PRIVATE FUNCTIONS ---------------------------------------------------- */
54 #if TARGET_HOST_UNIX_X11
56 * Queries the GL context about some attributes
58 static int fghGetConfig( int attribute )
62 if( fgStructure.Window )
63 glXGetConfig( fgDisplay.Display, fgStructure.Window->Window.VisualInfo,
64 attribute, &returnValue );
70 /* -- INTERFACE FUNCTIONS -------------------------------------------------- */
73 * General settings assignment method
75 void FGAPIENTRY glutSetOption( GLenum eWhat, int value )
77 freeglut_assert_ready;
80 * Check what is the caller querying for. In chronological code add order.
84 case GLUT_INIT_WINDOW_X:
85 fgState.Position.X = (GLint)value;
88 case GLUT_INIT_WINDOW_Y:
89 fgState.Position.Y = (GLint)value;
92 case GLUT_INIT_WINDOW_WIDTH:
93 fgState.Size.X = (GLint)value;
96 case GLUT_INIT_WINDOW_HEIGHT:
97 fgState.Size.Y = (GLint)value;
100 case GLUT_INIT_DISPLAY_MODE:
101 fgState.DisplayMode = (unsigned int)value;
104 case GLUT_ACTION_ON_WINDOW_CLOSE:
105 fgState.ActionOnWindowClose = value;
108 case GLUT_RENDERING_CONTEXT:
109 fgState.UseCurrentContext =
110 ( value == GLUT_USE_CURRENT_CONTEXT ) ? TRUE : FALSE;
113 case GLUT_WINDOW_CURSOR:
114 if( fgStructure.Window != NULL )
115 fgStructure.Window->State.Cursor = value;
120 * Just have it reported, so that we can see what needs to be implemented
122 fgWarning( "glutSetOption(): missing enum handle %i\n", eWhat );
128 * General settings query method
130 int FGAPIENTRY glutGet( GLenum eWhat )
133 GLboolean boolValue ;
135 if ( eWhat == GLUT_INIT_STATE )
136 return ( fgState.Time.Set ) ;
138 freeglut_assert_ready;
141 * Check what is the caller querying for. In chronological code add order.
145 case GLUT_ELAPSED_TIME:
147 * This is easy and nicely portable, as we are using GLib...
149 return( fgElapsedTime() );
152 * Following values are stored in fgState and fgDisplay global structures
154 case GLUT_SCREEN_WIDTH: return( fgDisplay.ScreenWidth );
155 case GLUT_SCREEN_HEIGHT: return( fgDisplay.ScreenHeight );
156 case GLUT_SCREEN_WIDTH_MM: return( fgDisplay.ScreenWidthMM );
157 case GLUT_SCREEN_HEIGHT_MM: return( fgDisplay.ScreenHeightMM );
158 case GLUT_INIT_WINDOW_X: return( fgState.Position.X );
159 case GLUT_INIT_WINDOW_Y: return( fgState.Position.Y );
160 case GLUT_INIT_WINDOW_WIDTH: return( fgState.Size.X );
161 case GLUT_INIT_WINDOW_HEIGHT: return( fgState.Size.Y );
162 case GLUT_INIT_DISPLAY_MODE: return( fgState.DisplayMode );
165 * The window/context specific queries are handled mostly by fghGetConfig().
167 case GLUT_WINDOW_NUM_SAMPLES:
169 * Multisampling. Return what I know about multisampling.
173 #if TARGET_HOST_UNIX_X11
175 * The rest of GLX queries under X are general enough to use a macro to check them
177 # define GLX_QUERY(a,b) case a: return( fghGetConfig( b ) );
179 GLX_QUERY( GLUT_WINDOW_RGBA, GLX_RGBA );
180 GLX_QUERY( GLUT_WINDOW_DOUBLEBUFFER, GLX_DOUBLEBUFFER );
181 GLX_QUERY( GLUT_WINDOW_BUFFER_SIZE, GLX_BUFFER_SIZE );
182 GLX_QUERY( GLUT_WINDOW_STENCIL_SIZE, GLX_STENCIL_SIZE );
183 GLX_QUERY( GLUT_WINDOW_DEPTH_SIZE, GLX_DEPTH_SIZE );
184 GLX_QUERY( GLUT_WINDOW_RED_SIZE, GLX_RED_SIZE );
185 GLX_QUERY( GLUT_WINDOW_GREEN_SIZE, GLX_GREEN_SIZE );
186 GLX_QUERY( GLUT_WINDOW_BLUE_SIZE, GLX_BLUE_SIZE );
187 GLX_QUERY( GLUT_WINDOW_ALPHA_SIZE, GLX_ALPHA_SIZE );
188 GLX_QUERY( GLUT_WINDOW_ACCUM_RED_SIZE, GLX_ACCUM_RED_SIZE );
189 GLX_QUERY( GLUT_WINDOW_ACCUM_GREEN_SIZE, GLX_ACCUM_GREEN_SIZE );
190 GLX_QUERY( GLUT_WINDOW_ACCUM_BLUE_SIZE, GLX_ACCUM_BLUE_SIZE );
191 GLX_QUERY( GLUT_WINDOW_ACCUM_ALPHA_SIZE, GLX_ACCUM_ALPHA_SIZE );
192 GLX_QUERY( GLUT_WINDOW_STEREO, GLX_STEREO );
197 * Colormap size is handled in a bit different way than all the rest
199 case GLUT_WINDOW_COLORMAP_SIZE:
201 * Check for the visual type
203 if( (fghGetConfig( GLX_RGBA )) || (fgStructure.Window == NULL) )
206 * We've got a RGBA visual, so there is no colormap at all.
207 * The other possibility is that we have no current window set.
213 * Otherwise return the number of entries in the colormap
215 return( fgStructure.Window->Window.VisualInfo->visual->map_entries );
218 * Those calls are somewhat similiar, as they use XGetWindowAttributes() function
222 case GLUT_WINDOW_BORDER_WIDTH:
223 case GLUT_WINDOW_HEADER_HEIGHT:
228 if( fgStructure.Window == NULL )
231 XTranslateCoordinates(
233 fgStructure.Window->Window.Handle,
234 fgDisplay.RootWindow,
239 case GLUT_WINDOW_X: return x;
240 case GLUT_WINDOW_Y: return y;
244 return( 0 ); /* Just in case */
246 XTranslateCoordinates(
248 fgStructure.Window->Window.Handle,
249 w, 0, 0, &x, &y, &w);
253 case GLUT_WINDOW_BORDER_WIDTH: return x;
254 case GLUT_WINDOW_HEADER_HEIGHT: return y;
258 case GLUT_WINDOW_WIDTH:
259 case GLUT_WINDOW_HEIGHT:
261 XWindowAttributes winAttributes;
264 * Return zero if there is no current window set
266 if( fgStructure.Window == NULL )
270 * Grab the current window's attributes now
272 XGetWindowAttributes(
274 fgStructure.Window->Window.Handle,
279 * See which window attribute to return
283 case GLUT_WINDOW_WIDTH: return winAttributes.width ;
284 case GLUT_WINDOW_HEIGHT: return winAttributes.height ;
289 * I do not know yet if there will be a fgChooseVisual() function for Win32
291 case GLUT_DISPLAY_MODE_POSSIBLE:
293 * Check if the current display mode is possible
295 return( fgChooseVisual() == NULL ? 0 : 1 );
298 * This is system-dependant
300 case GLUT_WINDOW_FORMAT_ID:
302 * Return the visual ID, if there is a current window naturally:
304 if( fgStructure.Window == NULL )
307 return( fgStructure.Window->Window.VisualInfo->visualid );
309 #elif TARGET_HOST_WIN32
312 * Handle the OpenGL inquiries
314 case GLUT_WINDOW_RGBA:
315 glGetBooleanv ( GL_RGBA_MODE, &boolValue ) ;
316 returnValue = boolValue ? 1 : 0 ;
317 return ( returnValue ) ;
318 case GLUT_WINDOW_DOUBLEBUFFER:
319 glGetBooleanv ( GL_DOUBLEBUFFER, &boolValue ) ;
320 returnValue = boolValue ? 1 : 0 ;
321 return ( returnValue ) ;
322 case GLUT_WINDOW_STEREO:
323 glGetBooleanv ( GL_STEREO, &boolValue ) ;
324 returnValue = boolValue ? 1 : 0 ;
325 return ( returnValue ) ;
327 case GLUT_WINDOW_RED_SIZE:
328 glGetIntegerv ( GL_RED_BITS, &returnValue ) ;
329 return ( returnValue ) ;
330 case GLUT_WINDOW_GREEN_SIZE:
331 glGetIntegerv ( GL_GREEN_BITS, &returnValue ) ;
332 return ( returnValue ) ;
333 case GLUT_WINDOW_BLUE_SIZE:
334 glGetIntegerv ( GL_BLUE_BITS, &returnValue ) ;
335 return ( returnValue ) ;
336 case GLUT_WINDOW_ALPHA_SIZE:
337 glGetIntegerv ( GL_ALPHA_BITS, &returnValue ) ;
338 return ( returnValue ) ;
339 case GLUT_WINDOW_ACCUM_RED_SIZE:
340 glGetIntegerv ( GL_ACCUM_RED_BITS, &returnValue ) ;
341 return ( returnValue ) ;
342 case GLUT_WINDOW_ACCUM_GREEN_SIZE:
343 glGetIntegerv ( GL_ACCUM_GREEN_BITS, &returnValue ) ;
344 return ( returnValue ) ;
345 case GLUT_WINDOW_ACCUM_BLUE_SIZE:
346 glGetIntegerv ( GL_ACCUM_BLUE_BITS, &returnValue ) ;
347 return ( returnValue ) ;
348 case GLUT_WINDOW_ACCUM_ALPHA_SIZE:
349 glGetIntegerv ( GL_ACCUM_ALPHA_BITS, &returnValue ) ;
350 return ( returnValue ) ;
351 case GLUT_WINDOW_DEPTH_SIZE:
352 glGetIntegerv ( GL_DEPTH_BITS, &returnValue ) ;
353 return ( returnValue ) ;
355 case GLUT_WINDOW_BUFFER_SIZE:
356 returnValue = 1 ; /* ????? */
357 return ( returnValue ) ;
358 case GLUT_WINDOW_STENCIL_SIZE:
359 returnValue = 0 ; /* ????? */
360 return ( returnValue ) ;
363 * Window position and size
367 case GLUT_WINDOW_WIDTH:
368 case GLUT_WINDOW_HEIGHT:
371 * There is considerable confusion about the "right thing to
372 * do" concerning window size and position. GLUT itself is
373 * not consistent between Windows and UNIX/X11; since
374 * platform independence is a virtue for "freeglut", we
375 * decided to break with GLUT's behaviour.
377 * Under UNIX/X11, it is apparently not possible to get the
378 * window border sizes in order to subtract them off the
379 * window's initial position until some time after the window
380 * has been created. Therefore we decided on the following
381 * behaviour, both under Windows and under UNIX/X11:
382 * - When you create a window with position (x,y) and size
383 * (w,h), the upper left hand corner of the outside of the
384 * window is at (x,y) and the size of the drawable area is
386 * - When you query the size and position of the window--as
387 * is happening here for Windows--"freeglut" will return
388 * the size of the drawable area--the (w,h) that you
389 * specified when you created the window--and the coordinates
390 * of the upper left hand corner of the drawable
391 * area--which is NOT the (x,y) you specified.
396 freeglut_return_val_if_fail( fgStructure.Window != NULL, 0 );
399 * We need to call GetWindowRect() first...
400 * (this returns the pixel coordinates of the outside of the window)
402 GetWindowRect( fgStructure.Window->Window.Handle, &winRect );
405 * ...then we've got to correct the results we've just received...
407 if ( ( fgStructure.GameMode != fgStructure.Window ) && ( fgStructure.Window->Parent == NULL ) &&
408 ( ! fgStructure.Window->IsMenu ) )
410 winRect.left += GetSystemMetrics( SM_CXSIZEFRAME );
411 winRect.right -= GetSystemMetrics( SM_CXSIZEFRAME );
412 winRect.top += GetSystemMetrics( SM_CYSIZEFRAME ) + GetSystemMetrics( SM_CYCAPTION );
413 winRect.bottom -= GetSystemMetrics( SM_CYSIZEFRAME );
418 case GLUT_WINDOW_X: return( winRect.left );
419 case GLUT_WINDOW_Y: return( winRect.top );
420 case GLUT_WINDOW_WIDTH: return( winRect.right - winRect.left );
421 case GLUT_WINDOW_HEIGHT: return( winRect.bottom - winRect.top );
426 case GLUT_WINDOW_BORDER_WIDTH :
427 return ( GetSystemMetrics( SM_CXSIZEFRAME ) ) ;
429 case GLUT_WINDOW_HEADER_HEIGHT :
430 return ( GetSystemMetrics( SM_CYCAPTION ) ) ;
432 case GLUT_DISPLAY_MODE_POSSIBLE:
433 return( fgSetupPixelFormat( fgStructure.Window, TRUE, PFD_MAIN_PLANE ) );
435 case GLUT_WINDOW_FORMAT_ID:
436 if( fgStructure.Window != NULL )
437 return( GetPixelFormat( fgStructure.Window->Window.Device ) );
440 * If the current window does not exist, fail:
447 * The window structure queries
449 case GLUT_WINDOW_PARENT:
451 * Return the ID number of current window's parent, if any
453 if( fgStructure.Window == NULL ) return( 0 );
454 if( fgStructure.Window->Parent == NULL ) return( 0 );
456 return( fgStructure.Window->Parent->ID );
458 case GLUT_WINDOW_NUM_CHILDREN:
460 * Return the number of children attached to the current window
462 if( fgStructure.Window == NULL )
465 return( fgListLength( &fgStructure.Window->Children ) );
467 case GLUT_WINDOW_CURSOR:
469 * Return the currently selected window cursor
471 if( fgStructure.Window == NULL )
474 return( fgStructure.Window->State.Cursor );
476 case GLUT_MENU_NUM_ITEMS:
478 * Return the number of menu entries in the current menu
480 if( fgStructure.Menu == NULL )
483 return( fgListLength( &fgStructure.Menu->Entries ) );
485 case GLUT_ACTION_ON_WINDOW_CLOSE:
486 return fgState.ActionOnWindowClose ;
489 return VERSION_MAJOR * 10000 + VERSION_MINOR * 100 + VERSION_PATCH ;
491 case GLUT_RENDERING_CONTEXT:
492 return ( fgState.UseCurrentContext ? GLUT_USE_CURRENT_CONTEXT : GLUT_CREATE_NEW_CONTEXT ) ;
496 * Just have it reported, so that we can see what needs to be implemented
498 fgWarning( "glutGet(): missing enum handle %i\n", eWhat );
503 * If nothing happens, then we are in deep trouble...
509 * Returns various device information.
511 int FGAPIENTRY glutDeviceGet( GLenum eWhat )
513 freeglut_assert_ready;
516 * See why are we bothered...
518 * WARNING: we are mostly lying in this function.
522 case GLUT_HAS_KEYBOARD:
524 * We always have a keyboard present on PC machines...
528 #if TARGET_HOST_UNIX_X11
532 * Hey, my Atari 65XE hasn't had a mouse!
536 case GLUT_NUM_MOUSE_BUTTONS:
538 * Return the number of mouse buttons available. This is a big guess.
542 #elif TARGET_HOST_WIN32
546 * The Windows can be booted without a mouse.
547 * It would be nice to have this reported.
549 return( GetSystemMetrics( SM_MOUSEPRESENT ) );
551 case GLUT_NUM_MOUSE_BUTTONS:
553 * We are much more fortunate under Win32 about this...
555 return( GetSystemMetrics( SM_CMOUSEBUTTONS ) );
559 case GLUT_JOYSTICK_POLL_RATE:
560 case GLUT_HAS_JOYSTICK:
561 case GLUT_JOYSTICK_BUTTONS:
562 case GLUT_JOYSTICK_AXES:
564 * WARNING: THIS IS A BIG LIE!
568 case GLUT_HAS_SPACEBALL:
569 case GLUT_HAS_DIAL_AND_BUTTON_BOX:
570 case GLUT_HAS_TABLET:
572 * Sounds cool. And unuseful.
576 case GLUT_NUM_SPACEBALL_BUTTONS:
577 case GLUT_NUM_BUTTON_BOX_BUTTONS:
579 case GLUT_NUM_TABLET_BUTTONS:
581 * Zero is not the answer. Zero is the question. Continuum is the answer.
585 case GLUT_DEVICE_IGNORE_KEY_REPEAT:
587 * Return what we think about the key auto repeat settings
589 return( fgState.IgnoreKeyRepeat );
591 case GLUT_DEVICE_KEY_REPEAT:
593 * WARNING: THIS IS A BIG LIE!
595 return( GLUT_KEY_REPEAT_DEFAULT );
601 fgWarning( "glutDeviceGet(): missing enum handle %i\n", eWhat );
606 * And now -- the failure.
612 * This should return the current state of ALT, SHIFT and CTRL keys.
614 int FGAPIENTRY glutGetModifiers( void )
617 * Fail if there is no current window or called outside an input callback
619 if( fgStructure.Window == NULL )
622 if( fgStructure.Window->State.Modifiers == 0xffffffff )
624 fgWarning( "glutGetModifiers() called outside an input callback" );
629 * Return the current modifiers state otherwise
631 return( fgStructure.Window->State.Modifiers );
635 * Return the state of the GLUT API overlay subsystem. A misery ;-)
637 int FGAPIENTRY glutLayerGet( GLenum eWhat )
639 freeglut_assert_ready;
642 * This is easy as layers are not implemented ;-)
647 #if TARGET_HOST_UNIX_X11
649 case GLUT_OVERLAY_POSSIBLE:
651 * Nope, overlays are not possible.
655 case GLUT_LAYER_IN_USE:
657 * The normal plane is always in use
659 return( GLUT_NORMAL );
661 case GLUT_HAS_OVERLAY:
663 * No window is allowed to have an overlay
667 case GLUT_TRANSPARENT_INDEX:
669 * Return just anything, which is always defined as zero
673 case GLUT_NORMAL_DAMAGED:
675 * Actually I do not know. Maybe.
679 case GLUT_OVERLAY_DAMAGED:
681 * Return minus one to mark that no layer is in use
685 #elif TARGET_HOST_WIN32
687 case GLUT_OVERLAY_POSSIBLE:
689 * Check if an overlay display mode is possible
691 /* return( fgSetupPixelFormat( fgStructure.Window, TRUE, PFD_OVERLAY_PLANE ) ); */
694 case GLUT_LAYER_IN_USE:
696 * The normal plane is always in use
698 return( GLUT_NORMAL );
700 case GLUT_HAS_OVERLAY:
702 * No window is allowed to have an overlay
706 case GLUT_TRANSPARENT_INDEX:
708 * Return just anything, which is always defined as zero
712 case GLUT_NORMAL_DAMAGED:
714 * Actually I do not know. Maybe.
718 case GLUT_OVERLAY_DAMAGED:
720 * Return minus one to mark that no layer is in use
727 * Complain to the user about the obvious bug
729 fgWarning( "glutLayerGet(): missing enum handle %i\n", eWhat );
734 * And fail. That's good. Programs do love failing.
739 /*** END OF FILE ***/