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

GIS编程

开发平台:

Visual C++

  1. /* redblue_stereo.c - demo of stereo for red/blue filter stereo glasses */
  2. /* by Walter Vannini (walterv@jps.net, waltervannini@hotmail.com) */
  3. /* In stereo mode, the object is drawn in red for the left eye
  4.    and blue for the right eye.  Viewing the scene with red/blue
  5.    filter stereo glasses should give a sense of stereo 3D.
  6.    glColorMask is used to control update of the red and blue
  7.    channel.  glFrustum is used to setup two different view frustums
  8.    for each eye based on eye separation. */
  9. /* Copyright (c) Walter Vannini, 1998.  */
  10. /* This program is freely distributable without licensing fees and is
  11.    provided without guarantee or warrantee expressed or implied. This
  12.    program is -not- in the public domain. */
  13. #include <stdlib.h>
  14. #include <math.h>
  15. #include <GL/glut.h>
  16. #ifndef M_PI
  17. #define M_PI 3.14159265358979323846
  18. #endif
  19. void init(void);
  20. void KeyboardFunc(unsigned char key, int x, int y);
  21. void MenuFunc(int value);
  22. void IdleFunc(void);
  23. void ReshapeFunc(int w, int h);
  24. void DisplayFunc(void);
  25. struct ProgramState
  26. {
  27.  int w;
  28.  int h;
  29.  GLdouble RotationY;
  30.  double eye;
  31.  double zscreen;
  32.  double znear;
  33.  double zfar;
  34.  double RotationIncrement;
  35.  int solidmode;
  36. };
  37. struct ProgramState ps;
  38. const double PIXELS_PER_INCH = 100.0;
  39. void init(void)
  40. {
  41.  GLfloat mat_ambient[] = {0.2,0.0,0.2,1.0} ;
  42.  GLfloat mat_diffuse[] = {0.7,0.0,0.7,1.0} ;
  43.  GLfloat mat_specular[] = {0.1,0.0,0.1,1.0} ;
  44.  GLfloat mat_shininess[]={20.0};
  45.  GLfloat light_position[]={0.0,5.0,20.0,1.0};
  46.  GLfloat light_ambient0[]= {1.0,0.0,0.0,1.0};
  47.  GLfloat light_diffuse0[]= {1.0,0.0,0.0,1.0};
  48.  GLfloat light_specular0[]={1.0,0.0,0.0,1.0};
  49.  GLfloat light_ambient1[]= {0.0,0.0,1.0,1.0};
  50.  GLfloat light_diffuse1[]= {0.0,0.0,1.0,1.0};
  51.  GLfloat light_specular1[]={0.0,0.0,1.0,1.0};
  52.  glDisable(GL_DITHER);
  53.  glClearColor(0.0, 0.0, 0.0, 1.0);
  54.  glShadeModel(GL_SMOOTH);
  55.  glEnable(GL_DEPTH_TEST);
  56.  glEnable(GL_NORMALIZE);
  57.  glEnable(GL_CULL_FACE);
  58.  glLightModeli(GL_LIGHT_MODEL_LOCAL_VIEWER, 1);
  59.  glMaterialfv(GL_FRONT, GL_AMBIENT, mat_ambient);
  60.  glMaterialfv(GL_FRONT, GL_DIFFUSE, mat_diffuse);
  61.  glMaterialfv(GL_FRONT, GL_SPECULAR, mat_specular);
  62.  glMaterialfv(GL_FRONT, GL_SHININESS, mat_shininess);
  63.  glLightfv(GL_LIGHT0, GL_POSITION, light_position);
  64.  glLightfv(GL_LIGHT0, GL_AMBIENT, light_ambient0);
  65.  glLightfv(GL_LIGHT0, GL_DIFFUSE, light_diffuse0);
  66.  glLightfv(GL_LIGHT0, GL_SPECULAR, light_specular0);
  67.  glLightfv(GL_LIGHT1, GL_POSITION, light_position);
  68.  glLightfv(GL_LIGHT1, GL_AMBIENT, light_ambient1);
  69.  glLightfv(GL_LIGHT1, GL_DIFFUSE, light_diffuse1);
  70.  glLightfv(GL_LIGHT1, GL_SPECULAR, light_specular1);
  71.  glEnable(GL_LIGHTING);
  72.  ps.eye=0.80;
  73.  ps.zscreen = 10.0;
  74.  ps.znear = 7.0;
  75.  ps.zfar = 13.0;
  76.  ps.RotationY = 0.0;
  77.  ps.RotationIncrement = 4.0;
  78.  ps.solidmode = 1;
  79. }
  80. void KeyboardFunc(unsigned char key, int x, int y)
  81. {
  82.  switch(key)
  83.  {
  84.  case 27:  /* escape */
  85.  case 'q':
  86.  case 'Q':
  87.   exit(0);
  88.   break;
  89.  case 's': /* stereo */
  90.   ps.eye = 0.80;
  91.   break;
  92.  case '1':
  93.   ps.solidmode = 1;
  94.   glFrontFace(GL_CCW);
  95.   break;
  96.  case '2':
  97.   ps.solidmode = 2;
  98.   glFrontFace(GL_CCW);
  99.   break;
  100.  case '3':
  101.   ps.solidmode = 3;
  102.   /* The teapot polygons face the wrong way.  Sigh. */
  103.   glFrontFace(GL_CW);
  104.   break;
  105.  case '4':
  106.   ps.solidmode = 4;
  107.   glFrontFace(GL_CCW);
  108.   break;
  109.  case 'm': /* mono */
  110.   ps.eye = 0.0;
  111.   break;
  112.  }
  113. }
  114. void MenuFunc(int value)
  115. {
  116.   KeyboardFunc((unsigned char) value, 0, 0);
  117. }
  118. void IdleFunc(void)
  119. {
  120.  ps.RotationY += ps.RotationIncrement;
  121.  glutPostRedisplay();
  122. }
  123. void ReshapeFunc(int w, int h)
  124. {
  125.  glViewport(0,0,  w,  h);
  126.  ps.w = w;
  127.  ps.h = h;
  128. }
  129. void DisplayFunc(void)
  130. {
  131.  double xfactor=1.0, yfactor=1.0;
  132.  double Eye =0.0;
  133.  int i;
  134.  if(ps.w < ps.h)
  135.  {
  136.   xfactor = 1.0;
  137.   yfactor = ps.h/ps.w;
  138.  }
  139.  else if(ps.h < ps.w)
  140.  {
  141.   xfactor = ps.w/ps.h;
  142.   yfactor = 1.0;
  143.  }
  144.  glClear(GL_COLOR_BUFFER_BIT);
  145.  for(i=0;i<2;i++)
  146.  {
  147.   glEnable(GL_LIGHT0 + i);
  148.   glClear(GL_DEPTH_BUFFER_BIT);
  149.   if(i==0) /* left eye - RED */
  150.   {
  151.    Eye = ps.eye;
  152.    glColorMask(GL_TRUE,GL_FALSE,GL_FALSE,GL_TRUE);
  153.   }
  154.   else /* if(i==1) right eye - BLUE */
  155.   {
  156.    Eye = -ps.eye;
  157.    glColorMask(GL_FALSE,GL_FALSE,GL_TRUE,GL_TRUE);
  158.   }
  159.   glMatrixMode(GL_PROJECTION);
  160.   glLoadIdentity();
  161.   glFrustum(
  162.    (-(ps.w/(2.0*PIXELS_PER_INCH))+Eye) *(ps.znear/ps.zscreen)*xfactor,
  163.    (ps.w/(2.0*PIXELS_PER_INCH)+Eye)    *(ps.znear/ps.zscreen)*xfactor,
  164.    -(ps.h/(2.0*PIXELS_PER_INCH))*(ps.znear/ps.zscreen)*yfactor,
  165.    (ps.h/(2.0*PIXELS_PER_INCH))*(ps.znear/ps.zscreen)*yfactor,
  166.    ps.znear, ps.zfar);
  167.   glMatrixMode(GL_MODELVIEW);
  168.   glLoadIdentity();
  169.   glTranslatef(Eye,0.0,0.0);
  170.   glTranslated(0,0,-ps.zscreen);
  171.   switch(ps.solidmode)
  172.   {
  173.   case 1:
  174.    {
  175.     glTranslated(cos(ps.RotationY*M_PI/180.0),
  176.      0, -sin(ps.RotationY*M_PI/180.0) );
  177.     glRotated(ps.RotationY, 0.0,0.1,0.0);
  178.     glPushMatrix();
  179.      glScalef(0.5,0.5,0.5);
  180.      glutSolidDodecahedron();
  181.     glPopMatrix();
  182.     break;
  183.    }
  184.   case 2:
  185.    {
  186.     glTranslated(cos(ps.RotationY*M_PI/180.0),
  187.      0, -sin(ps.RotationY*M_PI/180.0) );
  188.     glRotated(ps.RotationY, 0.0,0.1,0.0);
  189.     glutSolidIcosahedron();
  190.     break;
  191.    }
  192.   case 3:
  193.    {
  194.     glRotated(60.0, 1 , 0, 0);
  195.     glTranslated(cos(ps.RotationY*M_PI/180.0),
  196.      0, -sin(ps.RotationY*M_PI/180.0) );
  197.     glRotated(ps.RotationY, 0.0,0.1,0.0);
  198.     glutSolidTeapot(1.0);
  199.     break;
  200.    }
  201.   case 4:
  202.    {
  203.     double SunRadius = 0.2;
  204.     double SunToEarth = 1.0;
  205.     double EarthRadius = 0.15;
  206.     glutSolidSphere(SunRadius, 20, 16);   /* draw sun */
  207.     glRotated(60.0, 1 , 0, 0);
  208.     glPushMatrix();
  209.      glRotated(90.0, 1 , 0, 0);
  210.      glutSolidTorus(0.01,SunToEarth, 10,50);
  211.     glPopMatrix();
  212.     glRotated(ps.RotationY, 0.0,0.1,0.0);
  213.     glTranslatef (SunToEarth, 0.0, 0.0);
  214.     glutSolidSphere(EarthRadius, 10, 8);    /* draw earth */
  215.     break;
  216.    }
  217.   }
  218.   glDisable(GL_LIGHT0 + i);
  219.  }
  220.  glColorMask(GL_TRUE,GL_TRUE,GL_TRUE,GL_TRUE);
  221.  glutSwapBuffers();
  222. }
  223. void
  224. VisibilityFunc(int vis)
  225. {
  226.   if (vis == GLUT_VISIBLE) {
  227.     glutIdleFunc(IdleFunc);
  228.   } else {
  229.     glutIdleFunc(NULL);
  230.   }
  231. }
  232. int main(int argc, char **argv)
  233. {
  234.  glutInit(&argc, argv);
  235.  glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGBA );
  236.  ps.w = 512;
  237.  ps.h = 512;
  238.  glutInitWindowSize(ps.w, ps.h);
  239.  glutInitWindowPosition(100,100);
  240.  glutCreateWindow(argv[0]);
  241.  init();
  242.  glutVisibilityFunc(VisibilityFunc); 
  243.  glutDisplayFunc(DisplayFunc);
  244.  glutReshapeFunc(ReshapeFunc);
  245.  glutKeyboardFunc(KeyboardFunc);
  246.  glutCreateMenu(MenuFunc);
  247.  glutAddMenuEntry("Stereo", 's');
  248.  glutAddMenuEntry("Mono", 'm');
  249.  glutAddMenuEntry("Dodecahedron", '1');
  250.  glutAddMenuEntry("Icosahedron", '2');
  251.  glutAddMenuEntry("Teapot", '3');
  252.  glutAddMenuEntry("Solar system", '4');
  253.  glutAttachMenu(GLUT_RIGHT_BUTTON);
  254.  glutMainLoop();
  255.  return 0;
  256. }