sb2db.c
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:9k
源码类别:

GIS编程

开发平台:

Visual C++

  1. /* Copyright (c) Mark J. Kilgard, 1994, 1996. */
  2. /**
  3.  * (c) Copyright 1993, Silicon Graphics, Inc.
  4.  * ALL RIGHTS RESERVED 
  5.  * Permission to use, copy, modify, and distribute this software for 
  6.  * any purpose and without fee is hereby granted, provided that the above
  7.  * copyright notice appear in all copies and that both the copyright notice
  8.  * and this permission notice appear in supporting documentation, and that 
  9.  * the name of Silicon Graphics, Inc. not be used in advertising
  10.  * or publicity pertaining to distribution of the software without specific,
  11.  * written prior permission. 
  12.  *
  13.  * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS"
  14.  * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE,
  15.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR
  16.  * FITNESS FOR A PARTICULAR PURPOSE.  IN NO EVENT SHALL SILICON
  17.  * GRAPHICS, INC.  BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT,
  18.  * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY
  19.  * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION,
  20.  * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF
  21.  * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC.  HAS BEEN
  22.  * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON
  23.  * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE
  24.  * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE.
  25.  * 
  26.  * US Government Users Restricted Rights 
  27.  * Use, duplication, or disclosure by the Government is subject to
  28.  * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph
  29.  * (c)(1)(ii) of the Rights in Technical Data and Computer Software
  30.  * clause at DFARS 252.227-7013 and/or in similar or successor
  31.  * clauses in the FAR or the DOD or NASA FAR Supplement.
  32.  * Unpublished-- rights reserved under the copyright laws of the
  33.  * United States.  Contractor/manufacturer is Silicon Graphics,
  34.  * Inc., 2011 N.  Shoreline Blvd., Mountain View, CA 94039-7311.
  35.  *
  36.  * OpenGL(TM) is a trademark of Silicon Graphics, Inc.
  37.  */
  38. /* sb2db.c - This program demonstrates switching between single buffered
  39.    and double buffered windows when using GLUT.  Use the pop-up menu to
  40.    change the buffering style used.  On machine that split the screen's
  41.    color resolution in half when double buffering, you should notice better
  42.    coloration (less or no dithering) in single buffer mode (but flicker on
  43.    redraws, particularly when rotation is toggled on).  */
  44. /* This program is based on the GLUT scene.c program. */
  45. #include <stdlib.h>
  46. #include <GL/glut.h>
  47. int sbwin, dbwin;
  48. int angle;
  49. /*  Initialize material property and light source.  */
  50. void
  51. myinit(void)
  52. {
  53.   GLfloat light_ambient[] =
  54.   {0.3, 0.3, 0.3, 1.0};
  55.   GLfloat light_diffuse[] =
  56.   {6.0, 6.0, 6.0, 1.0};
  57.   GLfloat light_specular[] =
  58.   {1.0, 1.0, 1.0, 1.0};
  59.   /* light_position is NOT default value */
  60.   GLfloat light_position[] =
  61.   {-1.0, 1.0, 1.0, 0.0};
  62.   glLightfv(GL_LIGHT0, GL_AMBIENT, light_ambient);
  63.   glLightfv(GL_LIGHT0, GL_DIFFUSE, light_diffuse);
  64.   glLightfv(GL_LIGHT0, GL_SPECULAR, light_specular);
  65.   glLightfv(GL_LIGHT0, GL_POSITION, light_position);
  66.   glEnable(GL_LIGHT0);
  67.   glDepthFunc(GL_LESS);
  68.   glEnable(GL_DEPTH_TEST);
  69.   glEnable(GL_LIGHTING);
  70. }
  71. void
  72. display(void)
  73. {
  74.   static GLfloat red[] =
  75.   {0.8, 0.0, 0.0, 1.0};
  76.   static GLfloat yellow[] =
  77.   {0.8, 0.8, 0.0, 1.0};
  78.   static GLfloat green[] =
  79.   {0.0, 0.8, 0.0, 1.0};
  80.   glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
  81.   glPushMatrix();
  82.   glRotatef(angle, 1.0, 0.0, 0.0);
  83.   glScalef(1.3, 1.3, 1.3);
  84.   glRotatef(20.0, 1.0, 0.0, 0.0);
  85.   glPushMatrix();
  86.   glTranslatef(-0.75, 0.5, 0.0);
  87.   glRotatef(90.0, 1.0, 0.0, 0.0);
  88.   glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE, red);
  89.   glutSolidTorus(0.275, 0.85, 10, 15);
  90.   glPopMatrix();
  91.   glPushMatrix();
  92.   glTranslatef(-0.75, -0.5, 0.0);
  93.   glRotatef(270.0, 1.0, 0.0, 0.0);
  94.   glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE, yellow);
  95.   glutSolidCone(1.0, 1.0, 40, 40);
  96.   glPopMatrix();
  97.   glPushMatrix();
  98.   glTranslatef(0.75, 0.0, -1.0);
  99.   glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE, green);
  100.   glutSolidIcosahedron();
  101.   glPopMatrix();
  102.   glPopMatrix();
  103.   if (glutGetWindow() == sbwin) {
  104.     glFlush();
  105.   } else {
  106.     glutSwapBuffers();
  107.   }
  108. }
  109. /* Used by both windows, this routine setups the OpenGL context's
  110.    projection matrix correctly.  Note that we call this routine for
  111.    both contexts to keep them in sync after reshapes. */
  112. void
  113. reshapeOpenGLState(int w, int h)
  114. {
  115.   glMatrixMode(GL_PROJECTION);
  116.   glLoadIdentity();
  117.   if (w <= h)
  118.     glOrtho(-2.5, 2.5, -2.5 * (GLfloat) h / (GLfloat) w,
  119.       2.5 * (GLfloat) h / (GLfloat) w, -10.0, 10.0);
  120.   else
  121.     glOrtho(-2.5 * (GLfloat) w / (GLfloat) h,
  122.       2.5 * (GLfloat) w / (GLfloat) h, -2.5, 2.5, -10.0, 10.0);
  123.   glMatrixMode(GL_MODELVIEW);
  124. }
  125. /* When the single buffered (ie, the top window) gets resized, we
  126.    need to resize the child double buffered window as well.  Hence
  127.    the glutReshapeWindow on the child.  NOTE:  You want a separate
  128.    resize callback for the double buffered window to set the viewport
  129.    since the window's size won't really be changed until the double buffered
  130.    gets its dbReshape callback.  Otherwise, you could trick OpenGL intop
  131.    clipping based on the old window size. */
  132. void
  133. sbReshape(int w, int h)
  134. {
  135.   glutSetWindow(sbwin);
  136.   glViewport(0, 0, w, h);
  137.   reshapeOpenGLState(w, h);
  138.   glutSetWindow(dbwin);
  139.   glutReshapeWindow(w, h);
  140. }
  141. void
  142. dbReshape(int w, int h)
  143. {
  144.   glViewport(0, 0, w, h);
  145.   reshapeOpenGLState(w, h);
  146. }
  147. void
  148. rotation(void)
  149. {
  150.   angle += 2;
  151.   angle = angle % 360;
  152.   glutPostRedisplay();
  153. }
  154. int animation = 0;  /* Are we doing an animated rotation currently? */
  155. void
  156. main_menu(int value)
  157. {
  158.   switch (value) {
  159.   case 1:
  160.     /* Smart toggle rotation ensures we switch to double buffered when
  161.        animating and single buffered when not animating. */
  162.     animation = 1 - animation;  /* Toggle. */
  163.     if (animation) {
  164.       glutIdleFunc(rotation);
  165.       glutSetWindow(sbwin);
  166.       glutSetWindowTitle("sb2db - double buffer mode");
  167.       glutSetWindow(dbwin);
  168.       glutShowWindow();   /* Show the double buffered window. */
  169.     } else {
  170.       glutIdleFunc(NULL);
  171.       glutSetWindow(sbwin);
  172.       glutSetWindowTitle("sb2db - single buffer mode");
  173.       glutSetWindow(dbwin);
  174.       glutHideWindow();   /* Hide the double buffered window. */
  175.     }
  176.     break;
  177.   case 2:
  178.     glutSetWindow(dbwin);
  179.     glutHideWindow();   /* Hide the double buffered window. */
  180.     glutSetWindow(sbwin);
  181.     glutSetWindowTitle("sb2db - single buffer mode");
  182.     break;
  183.   case 3:
  184.     glutSetWindow(sbwin);
  185.     glutSetWindowTitle("sb2db - double buffer mode");
  186.     glutSetWindow(dbwin);
  187.     glutShowWindow();   /* Show the double buffered window. */
  188.     break;
  189.   case 4:
  190.     animation = 1 - animation;  /* Toggle. */
  191.     if (animation)
  192.       glutIdleFunc(rotation);
  193.     else
  194.       glutIdleFunc(NULL);
  195.     break;
  196.   case 666:
  197.     exit(0);
  198.     break;
  199.   }
  200. }
  201. /* You have to track the visibility of both the single buffered
  202.    and double buffered windows together. */
  203. void
  204. visibility(int state)
  205. {
  206.   static int sbvis = GLUT_NOT_VISIBLE, dbvis = GLUT_NOT_VISIBLE;
  207.   int eithervis;
  208.   if (glutGetWindow() == sbwin) {
  209.     sbvis = state;
  210.   } else {
  211.     dbvis = state;
  212.   }
  213.   eithervis = (sbvis == GLUT_VISIBLE) || (dbvis == GLUT_VISIBLE);
  214.   if (eithervis) {
  215.     /* Resume rotating idle callback if we become visible and
  216.        animation is enabled. */
  217.     if (animation) {
  218.       glutIdleFunc(rotation);
  219.     }
  220.   } else {
  221.     /* Disable animation when both windows are not visible. */
  222.     glutIdleFunc(NULL);
  223.   }
  224. }
  225. int
  226. main(int argc, char **argv)
  227. {
  228.   glutInitWindowSize(500, 500);
  229.   glutInit(&argc, argv);
  230.   glutInitDisplayMode(GLUT_RGB | GLUT_DEPTH | GLUT_SINGLE);
  231.   /* The top window is single buffered. */
  232.   sbwin = glutCreateWindow(argv[0]);
  233.   glutReshapeFunc(sbReshape);
  234.   glutDisplayFunc(display);
  235.   glutVisibilityFunc(visibility);
  236.   myinit();
  237.   /* The child window is double buffered.  We show this window
  238.      when displaying double buffered and hide it to show the
  239.      single buffered window. */
  240.   glutInitDisplayMode(GLUT_RGB | GLUT_DEPTH | GLUT_DOUBLE);
  241.   dbwin = glutCreateSubWindow(glutGetWindow(),
  242.     0, 0, glutGet(GLUT_WINDOW_WIDTH), glutGet(GLUT_WINDOW_HEIGHT));
  243.   glutDisplayFunc(display);
  244.   glutReshapeFunc(dbReshape);
  245.   glutVisibilityFunc(visibility);
  246.   /* Call myinit for both the single buffered window and the
  247.      double buffered window.  We must mirror the same OpenGL
  248.      state in both window's OpenGL contexts.  If you make this
  249.      program more complicated, remember to keep the window's
  250.      context state in sync. */
  251.   myinit();
  252.   /* Initially hide the double buffered window to start in
  253.      single buffered mode. */
  254.   glutHideWindow();
  255.   glutCreateMenu(main_menu);
  256.   glutAddMenuEntry("Smart rotation toggle", 1);
  257.   glutAddMenuEntry("Single buffer", 2);
  258.   glutAddMenuEntry("Double buffer", 3);
  259.   glutAddMenuEntry("Toggle rotation", 4);
  260.   glutAddMenuEntry("Quit", 666);
  261.   glutAttachMenu(GLUT_RIGHT_BUTTON);
  262.   glutSetWindow(sbwin);
  263.   glutAttachMenu(GLUT_RIGHT_BUTTON);
  264.   glutMainLoop();
  265.   return 0;             /* ANSI C requires main to return int. */
  266. }