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

GIS编程

开发平台:

Visual C++

  1. /* motionblur.c - by Tom McReynolds, SGI */
  2. /* Using the accumulation buffer for motion blur. */
  3. #include <GL/glut.h>
  4. #include <stdlib.h>
  5. #include <stdio.h>
  6. const GLdouble FRUSTDIM = 100.f;
  7. const GLdouble FRUSTNEAR = 320.f;
  8. const GLdouble FRUSTFAR = 660.f;
  9. /*
  10. ** Create a single component texture map
  11. */
  12. GLfloat *make_texture(int maxs, int maxt)
  13. {
  14.     int s, t;
  15.     static GLfloat *texture;
  16.     texture = (GLfloat *)malloc(maxs * maxt * sizeof(GLfloat));
  17.     for(t = 0; t < maxt; t++) {
  18.         for(s = 0; s < maxs; s++) {
  19.             texture[s + maxs * t] = ((s >> 4) & 0x1) ^ ((t >> 4) & 0x1);
  20.         }
  21.     }
  22.     return texture;
  23. }
  24. enum {SPHERE = 1, CONE};
  25. void
  26. render(GLfloat dx, GLfloat dy, GLfloat dz)
  27. {
  28.     /* material properties for objects in scene */
  29.     static GLfloat wall_mat[] = {1.f, 1.f, 1.f, 1.f};
  30.     glClear(GL_DEPTH_BUFFER_BIT|GL_COLOR_BUFFER_BIT);
  31.     /*
  32.     ** Note: wall verticies are ordered so they are all front facing
  33.     ** this lets me do back face culling to speed things up.
  34.     */
  35.  
  36.     glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, wall_mat);
  37.     /* floor */
  38.     /* make the floor textured */
  39.     glEnable(GL_TEXTURE_2D);
  40.     /*
  41.     ** Since we want to turn texturing on for floor only, we have to
  42.     ** make floor a separate glBegin()/glEnd() sequence. You can't
  43.     ** turn texturing on and off between begin and end calls
  44.     */
  45.     glBegin(GL_QUADS);
  46.     glNormal3f(0.f, 1.f, 0.f);
  47.     glTexCoord2i(0, 0);
  48.     glVertex3f(-100.f, -100.f, -320.f);
  49.     glTexCoord2i(1, 0);
  50.     glVertex3f( 100.f, -100.f, -320.f);
  51.     glTexCoord2i(1, 1);
  52.     glVertex3f( 100.f, -100.f, -640.f);
  53.     glTexCoord2i(0, 1);
  54.     glVertex3f(-100.f, -100.f, -640.f);
  55.     glEnd();
  56.     glDisable(GL_TEXTURE_2D);
  57.     /* walls */
  58.     glBegin(GL_QUADS);
  59.     /* left wall */
  60.     glNormal3f(1.f, 0.f, 0.f);
  61.     glVertex3f(-100.f, -100.f, -320.f);
  62.     glVertex3f(-100.f, -100.f, -640.f);
  63.     glVertex3f(-100.f,  100.f, -640.f);
  64.     glVertex3f(-100.f,  100.f, -320.f);
  65.     /* right wall */
  66.     glNormal3f(-1.f, 0.f, 0.f);
  67.     glVertex3f( 100.f, -100.f, -320.f);
  68.     glVertex3f( 100.f,  100.f, -320.f);
  69.     glVertex3f( 100.f,  100.f, -640.f);
  70.     glVertex3f( 100.f, -100.f, -640.f);
  71.     /* ceiling */
  72.     glNormal3f(0.f, -1.f, 0.f);
  73.     glVertex3f(-100.f,  100.f, -320.f);
  74.     glVertex3f(-100.f,  100.f, -640.f);
  75.     glVertex3f( 100.f,  100.f, -640.f);
  76.     glVertex3f( 100.f,  100.f, -320.f);
  77.     /* back wall */
  78.     glNormal3f(0.f, 0.f, 1.f);
  79.     glVertex3f(-100.f, -100.f, -640.f);
  80.     glVertex3f( 100.f, -100.f, -640.f);
  81.     glVertex3f( 100.f,  100.f, -640.f);
  82.     glVertex3f(-100.f,  100.f, -640.f);
  83.     glEnd();
  84.     glPushMatrix();
  85.     glTranslatef(-80.f + dx, -60.f + dy, -420.f + dz);
  86.     glCallList(SPHERE);
  87.     glPopMatrix();
  88.     glPushMatrix();
  89.     glTranslatef(-20.f, -80.f, -600.f);
  90.     glCallList(CONE);
  91.     glPopMatrix();
  92.     if(glGetError()) /* to catch programming errors; should never happen */
  93.        printf("Oops! I screwed up my OpenGL calls somewheren");
  94.     glFlush(); /* high end machines may need this */
  95. }
  96. enum {NONE, FIELD};
  97. int rendermode = NONE;
  98. void
  99. menu(int selection)
  100. {
  101.   rendermode = selection;
  102.   glutPostRedisplay();
  103. }
  104. GLdouble focus = 420.;
  105. /* Called when window needs to be redrawn */
  106. void redraw(void)
  107. {
  108.     int i;
  109.     int max;
  110.     GLfloat dx, dy, dz;
  111.     dx =  .5f;
  112.     dy =  1.f;
  113.     dz = -2.f;
  114.     glPushMatrix();
  115.     switch(rendermode) {
  116.     case NONE:
  117.       render(0.f, 0.f, 0.f);
  118.       break;
  119.     case FIELD:
  120.       max = 16;
  121.       glClear(GL_ACCUM_BUFFER_BIT);
  122.       for(i = 0; i < max; i++) {
  123.         render(dx * i, dy * i, dz * i);
  124.         glAccum(GL_ACCUM, 1.f/max);
  125.       } 
  126.       glAccum(GL_RETURN, 1.f);
  127.     break;
  128.     }
  129.     glPopMatrix();
  130.     glutSwapBuffers();
  131. }
  132. /* ARGSUSED1 */
  133. void key(unsigned char key, int x, int y)
  134. {
  135.     if(key == '33')
  136.         exit(0);
  137. }
  138. const int TEXDIM = 256;
  139. /* Parse arguments, and set up interface between OpenGL and window system */
  140. int
  141. main(int argc, char *argv[])
  142. {
  143.     GLfloat *tex;
  144.     static GLfloat lightpos[] = {50.f, 50.f, -320.f, 1.f};
  145.     static GLfloat sphere_mat[] = {1.f, .5f, 0.f, 1.f};
  146.     static GLfloat cone_mat[] = {0.f, .5f, 1.f, 1.f};
  147.     GLUquadricObj *sphere, *cone, *base;
  148.     glutInit(&argc, argv);
  149.     glutInitWindowSize(512, 512);
  150.     glutInitDisplayMode(GLUT_RGBA|GLUT_DEPTH|GLUT_ACCUM|GLUT_DOUBLE);
  151.     (void)glutCreateWindow("motion blur");
  152.     glutDisplayFunc(redraw);
  153.     glutKeyboardFunc(key);
  154.     glutCreateMenu(menu);
  155.     glutAddMenuEntry("Normal", NONE);
  156.     glutAddMenuEntry("Motion Blur", FIELD);
  157.     glutAttachMenu(GLUT_RIGHT_BUTTON);
  158.     /* draw a perspective scene */
  159.     glMatrixMode(GL_PROJECTION);
  160.     glFrustum(-FRUSTDIM, FRUSTDIM, -FRUSTDIM, FRUSTDIM, FRUSTNEAR, FRUSTFAR); 
  161.     glMatrixMode(GL_MODELVIEW);
  162.     /* turn on features */
  163.     glEnable(GL_DEPTH_TEST);
  164.     glEnable(GL_LIGHTING);
  165.     glEnable(GL_LIGHT0);
  166.     /* place light 0 in the right place */
  167.     glLightfv(GL_LIGHT0, GL_POSITION, lightpos);
  168.     /* remove back faces to speed things up */
  169.     glCullFace(GL_BACK);
  170.     glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
  171.     glNewList(SPHERE, GL_COMPILE);
  172.     /* make display lists for sphere and cone; for efficiency */
  173.     sphere = gluNewQuadric();
  174.     glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, sphere_mat);
  175.     gluSphere(sphere, 20.f, 20, 20);
  176.     gluDeleteQuadric(sphere);
  177.     glEndList();
  178.     glNewList(CONE, GL_COMPILE);
  179.     cone = gluNewQuadric();
  180.     base = gluNewQuadric();
  181.     glRotatef(-90.f, 1.f, 0.f, 0.f);
  182.     glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, cone_mat);
  183.     gluDisk(base, 0., 20., 20, 1);
  184.     gluCylinder(cone, 20., 0., 60., 20, 20);
  185.     gluDeleteQuadric(cone);
  186.     gluDeleteQuadric(base);
  187.     glEndList();
  188.     /* load pattern for current 2d texture */
  189.     tex = make_texture(TEXDIM, TEXDIM);
  190.     glTexImage2D(GL_TEXTURE_2D, 0, 1, TEXDIM, TEXDIM, 0, GL_RED, GL_FLOAT, tex);
  191.     free(tex);
  192.     glutMainLoop();
  193.     return 0;             /* ANSI C requires main to return int. */
  194. }