freeglut_ext.h
上传用户:gb3593
上传日期:2022-01-07
资源大小:3028k
文件大小:8k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. #ifndef  __FREEGLUT_EXT_H__
  2. #define  __FREEGLUT_EXT_H__
  3. /*
  4.  * freeglut_ext.h
  5.  *
  6.  * The non-GLUT-compatible extensions to the freeglut library include file
  7.  *
  8.  * Copyright (c) 1999-2000 Pawel W. Olszta. All Rights Reserved.
  9.  * Written by Pawel W. Olszta, <olszta@sourceforge.net>
  10.  * Creation date: Thu Dec 2 1999
  11.  *
  12.  * Permission is hereby granted, free of charge, to any person obtaining a
  13.  * copy of this software and associated documentation files (the "Software"),
  14.  * to deal in the Software without restriction, including without limitation
  15.  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  16.  * and/or sell copies of the Software, and to permit persons to whom the
  17.  * Software is furnished to do so, subject to the following conditions:
  18.  *
  19.  * The above copyright notice and this permission notice shall be included
  20.  * in all copies or substantial portions of the Software.
  21.  *
  22.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  23.  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  24.  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  25.  * PAWEL W. OLSZTA BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  26.  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  27.  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  28.  */
  29. #ifdef __cplusplus
  30.     extern "C" {
  31. #endif
  32. /*
  33.  * Additional GLUT Key definitions for the Special key function
  34.  */
  35. #define GLUT_KEY_NUM_LOCK           0x006D
  36. #define GLUT_KEY_BEGIN              0x006E
  37. #define GLUT_KEY_DELETE             0x006F
  38. /*
  39.  * GLUT API Extension macro definitions -- behaviour when the user clicks on an "x" to close a window
  40.  */
  41. #define GLUT_ACTION_EXIT                         0
  42. #define GLUT_ACTION_GLUTMAINLOOP_RETURNS         1
  43. #define GLUT_ACTION_CONTINUE_EXECUTION           2
  44. /*
  45.  * Create a new rendering context when the user opens a new window?
  46.  */
  47. #define GLUT_CREATE_NEW_CONTEXT                  0
  48. #define GLUT_USE_CURRENT_CONTEXT                 1
  49. /*
  50.  * Direct/Indirect rendering context options (has meaning only in Unix/X11)
  51.  */
  52. #define GLUT_FORCE_INDIRECT_CONTEXT              0
  53. #define GLUT_ALLOW_DIRECT_CONTEXT                1
  54. #define GLUT_TRY_DIRECT_CONTEXT                  2
  55. #define GLUT_FORCE_DIRECT_CONTEXT                3
  56. /*
  57.  * GLUT API Extension macro definitions -- the glutGet parameters
  58.  */
  59. #define  GLUT_INIT_STATE                    0x007C
  60. #define  GLUT_ACTION_ON_WINDOW_CLOSE        0x01F9
  61. #define  GLUT_WINDOW_BORDER_WIDTH           0x01FA
  62. #define  GLUT_WINDOW_HEADER_HEIGHT          0x01FB
  63. #define  GLUT_VERSION                       0x01FC
  64. #define  GLUT_RENDERING_CONTEXT             0x01FD
  65. #define  GLUT_DIRECT_RENDERING              0x01FE
  66. #define  GLUT_FULL_SCREEN                   0x01FF
  67. /*
  68.  * New tokens for glutInitDisplayMode.
  69.  * Only one GLUT_AUXn bit may be used at a time.
  70.  * Value 0x0400 is defined in OpenGLUT.
  71.  */
  72. #define  GLUT_AUX                           0x1000
  73. #define  GLUT_AUX1                          0x1000
  74. #define  GLUT_AUX2                          0x2000
  75. #define  GLUT_AUX3                          0x4000
  76. #define  GLUT_AUX4                          0x8000
  77. /*
  78.  * Context-related flags, see freeglut_state.c
  79.  */
  80. #define  GLUT_INIT_MAJOR_VERSION            0x0200
  81. #define  GLUT_INIT_MINOR_VERSION            0x0201
  82. #define  GLUT_INIT_FLAGS                    0x0202
  83. #define  GLUT_INIT_PROFILE                  0x0203
  84. /*
  85.  * Flags for glutInitContextFlags, see freeglut_init.c
  86.  */
  87. #define  GLUT_DEBUG                         0x0001
  88. #define  GLUT_FORWARD_COMPATIBLE            0x0002
  89. /*
  90.  * Flags for glutInitContextProfile, see freeglut_init.c
  91.  */
  92. #define GLUT_CORE_PROFILE                   0x0001
  93. #define GLUT_COMPATIBILITY_PROFILE          0x0002
  94. /*
  95.  * Process loop function, see freeglut_main.c
  96.  */
  97. FGAPI void    FGAPIENTRY glutMainLoopEvent( void );
  98. FGAPI void    FGAPIENTRY glutLeaveMainLoop( void );
  99. FGAPI void    FGAPIENTRY glutExit         ( void );
  100. /*
  101.  * Window management functions, see freeglut_window.c
  102.  */
  103. FGAPI void    FGAPIENTRY glutFullScreenToggle( void );
  104. /*
  105.  * Window-specific callback functions, see freeglut_callbacks.c
  106.  */
  107. FGAPI void    FGAPIENTRY glutMouseWheelFunc( void (* callback)( int, int, int, int ) );
  108. FGAPI void    FGAPIENTRY glutCloseFunc( void (* callback)( void ) );
  109. FGAPI void    FGAPIENTRY glutWMCloseFunc( void (* callback)( void ) );
  110. /* A. Donev: Also a destruction callback for menus */
  111. FGAPI void    FGAPIENTRY glutMenuDestroyFunc( void (* callback)( void ) );
  112. /*
  113.  * State setting and retrieval functions, see freeglut_state.c
  114.  */
  115. FGAPI void    FGAPIENTRY glutSetOption ( GLenum option_flag, int value );
  116. FGAPI int *   FGAPIENTRY glutGetModeValues(GLenum mode, int * size);
  117. /* A.Donev: User-data manipulation */
  118. FGAPI void*   FGAPIENTRY glutGetWindowData( void );
  119. FGAPI void    FGAPIENTRY glutSetWindowData(void* data);
  120. FGAPI void*   FGAPIENTRY glutGetMenuData( void );
  121. FGAPI void    FGAPIENTRY glutSetMenuData(void* data);
  122. /*
  123.  * Font stuff, see freeglut_font.c
  124.  */
  125. FGAPI int     FGAPIENTRY glutBitmapHeight( void* font );
  126. FGAPI GLfloat FGAPIENTRY glutStrokeHeight( void* font );
  127. FGAPI void    FGAPIENTRY glutBitmapString( void* font, const unsigned char *string );
  128. FGAPI void    FGAPIENTRY glutStrokeString( void* font, const unsigned char *string );
  129. /*
  130.  * Geometry functions, see freeglut_geometry.c
  131.  */
  132. FGAPI void    FGAPIENTRY glutWireRhombicDodecahedron( void );
  133. FGAPI void    FGAPIENTRY glutSolidRhombicDodecahedron( void );
  134. FGAPI void    FGAPIENTRY glutWireSierpinskiSponge ( int num_levels, GLdouble offset[3], GLdouble scale );
  135. FGAPI void    FGAPIENTRY glutSolidSierpinskiSponge ( int num_levels, GLdouble offset[3], GLdouble scale );
  136. FGAPI void    FGAPIENTRY glutWireCylinder( GLdouble radius, GLdouble height, GLint slices, GLint stacks);
  137. FGAPI void    FGAPIENTRY glutSolidCylinder( GLdouble radius, GLdouble height, GLint slices, GLint stacks);
  138. /*
  139.  * Extension functions, see freeglut_ext.c
  140.  */
  141. typedef void (*GLUTproc)();
  142. FGAPI GLUTproc FGAPIENTRY glutGetProcAddress( const char *procName );
  143. /*
  144.  * Joystick functions, see freeglut_joystick.c
  145.  */
  146. /* USE OF THESE FUNCTIONS IS DEPRECATED !!!!! */
  147. /* If you have a serious need for these functions in your application, please either
  148.  * contact the "freeglut" developer community at freeglut-developer@lists.sourceforge.net,
  149.  * switch to the OpenGLUT library, or else port your joystick functionality over to PLIB's
  150.  * "js" library.
  151.  */
  152. int     glutJoystickGetNumAxes( int ident );
  153. int     glutJoystickGetNumButtons( int ident );
  154. int     glutJoystickNotWorking( int ident );
  155. float   glutJoystickGetDeadBand( int ident, int axis );
  156. void    glutJoystickSetDeadBand( int ident, int axis, float db );
  157. float   glutJoystickGetSaturation( int ident, int axis );
  158. void    glutJoystickSetSaturation( int ident, int axis, float st );
  159. void    glutJoystickSetMinRange( int ident, float *axes );
  160. void    glutJoystickSetMaxRange( int ident, float *axes );
  161. void    glutJoystickSetCenter( int ident, float *axes );
  162. void    glutJoystickGetMinRange( int ident, float *axes );
  163. void    glutJoystickGetMaxRange( int ident, float *axes );
  164. void    glutJoystickGetCenter( int ident, float *axes );
  165. /*
  166.  * Initialization functions, see freeglut_init.c
  167.  */
  168. FGAPI void    FGAPIENTRY glutInitContextVersion( int majorVersion, int minorVersion );
  169. FGAPI void    FGAPIENTRY glutInitContextFlags( int flags );
  170. FGAPI void    FGAPIENTRY glutInitContextProfile( int profile );
  171. /*
  172.  * GLUT API macro definitions -- the display mode definitions
  173.  */
  174. #define  GLUT_CAPTIONLESS                   0x0400
  175. #define  GLUT_BORDERLESS                    0x0800
  176. #define  GLUT_SRGB                          0x1000
  177. #ifdef __cplusplus
  178.     }
  179. #endif
  180. /*** END OF FILE ***/
  181. #endif /* __FREEGLUT_EXT_H__ */