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

GIS编程

开发平台:

Visual C++

  1. /* Copyright (c) Mark J. Kilgard, 1994. */
  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. /*
  39.  *  dof.c
  40.  *  This program demonstrates use of the accumulation buffer to
  41.  *  create an out-of-focus depth-of-field effect.  The teapots
  42.  *  are drawn several times into the accumulation buffer.  The
  43.  *  viewing volume is jittered, except at the focal point, where
  44.  *  the viewing volume is at the same position, each time.  In
  45.  *  this case, the gold teapot remains in focus.
  46.  */
  47. #include <stdlib.h>
  48. #include <math.h>
  49. #include <GL/glut.h>
  50. #include "jitter.h"
  51. #define PI_ 3.14159265358979323846
  52. /* accFrustum()
  53.  *  The first 6 arguments are identical to the glFrustum() call.
  54.  *  
  55.  *  pixdx and pixdy are anti-alias jitter in pixels. 
  56.  *  Set both equal to 0.0 for no anti-alias jitter.
  57.  *  eyedx and eyedy are depth-of field jitter in pixels. 
  58.  *  Set both equal to 0.0 for no depth of field effects.
  59.  *
  60.  *  focus is distance from eye to plane in focus. 
  61.  *  focus must be greater than, but not equal to 0.0.
  62.  *
  63.  *  Note that accFrustum() calls glTranslatef().  You will 
  64.  *  probably want to insure that your ModelView matrix has been 
  65.  *  initialized to identity before calling accFrustum().
  66.  */
  67. void accFrustum(GLdouble left, GLdouble right, GLdouble bottom, 
  68.     GLdouble top, GLdouble nnear, GLdouble ffar, GLdouble pixdx, 
  69.     GLdouble pixdy, GLdouble eyedx, GLdouble eyedy, GLdouble focus)
  70. {
  71.     GLdouble xwsize, ywsize; 
  72.     GLdouble dx, dy;
  73.     GLint viewport[4];
  74.     glGetIntegerv (GL_VIEWPORT, viewport);
  75.     xwsize = right - left;
  76.     ywsize = top - bottom;
  77.     dx = -(pixdx*xwsize/(GLdouble) viewport[2] + eyedx*nnear/focus);
  78.     dy = -(pixdy*ywsize/(GLdouble) viewport[3] + eyedy*nnear/focus);
  79.     glMatrixMode(GL_PROJECTION);
  80.     glLoadIdentity();
  81.     glFrustum (left + dx, right + dx, bottom + dy, top + dy, nnear, ffar);
  82.     glMatrixMode(GL_MODELVIEW);
  83.     glLoadIdentity();
  84.     glTranslatef (-eyedx, -eyedy, 0.0);
  85. }
  86. /*  accPerspective()
  87.  * 
  88.  *  The first 4 arguments are identical to the gluPerspective() call.
  89.  *  pixdx and pixdy are anti-alias jitter in pixels. 
  90.  *  Set both equal to 0.0 for no anti-alias jitter.
  91.  *  eyedx and eyedy are depth-of field jitter in pixels. 
  92.  *  Set both equal to 0.0 for no depth of field effects.
  93.  *
  94.  *  focus is distance from eye to plane in focus. 
  95.  *  focus must be greater than, but not equal to 0.0.
  96.  *
  97.  *  Note that accPerspective() calls accFrustum().
  98.  */
  99. void accPerspective(GLdouble fovy, GLdouble aspect, 
  100.     GLdouble nnear, GLdouble ffar, GLdouble pixdx, GLdouble pixdy, 
  101.     GLdouble eyedx, GLdouble eyedy, GLdouble focus)
  102. {
  103.     GLdouble fov2,left,right,bottom,top;
  104.     fov2 = ((fovy*PI_) / 180.0) / 2.0;
  105.     top = nnear / (cos(fov2) / sin(fov2));
  106.     bottom = -top;
  107.     right = top * aspect;
  108.     left = -right;
  109.     accFrustum (left, right, bottom, top, nnear, ffar,
  110. pixdx, pixdy, eyedx, eyedy, focus);
  111. }
  112. void myinit(void)
  113. {
  114.     GLfloat ambient[] = { 0.0, 0.0, 0.0, 1.0 };
  115.     GLfloat diffuse[] = { 1.0, 1.0, 1.0, 1.0 };
  116.     GLfloat position[] = { 0.0, 3.0, 3.0, 0.0 };
  117.     
  118.     GLfloat lmodel_ambient[] = { 0.2, 0.2, 0.2, 1.0 };
  119.     GLfloat local_view[] = { 0.0 };
  120.     glEnable(GL_DEPTH_TEST);
  121.     glDepthFunc(GL_LESS);
  122.     glLightfv(GL_LIGHT0, GL_AMBIENT, ambient);
  123.     glLightfv(GL_LIGHT0, GL_DIFFUSE, diffuse);
  124.     glLightfv(GL_LIGHT0, GL_POSITION, position);
  125.     
  126.     glLightModelfv(GL_LIGHT_MODEL_AMBIENT, lmodel_ambient);
  127.     glLightModelfv(GL_LIGHT_MODEL_LOCAL_VIEWER, local_view);
  128.     glFrontFace (GL_CW);
  129.     glEnable(GL_LIGHTING);
  130.     glEnable(GL_LIGHT0);
  131.     glEnable(GL_AUTO_NORMAL);
  132.     glEnable(GL_NORMALIZE);
  133.     glMatrixMode (GL_MODELVIEW);
  134.     glLoadIdentity ();
  135.     glClearColor(0.0, 0.0, 0.0, 0.0);
  136.     glClearAccum(0.0, 0.0, 0.0, 0.0);
  137. }
  138. void renderTeapot (GLfloat x, GLfloat y, GLfloat z, 
  139.     GLfloat ambr, GLfloat ambg, GLfloat ambb, 
  140.     GLfloat difr, GLfloat difg, GLfloat difb, 
  141.     GLfloat specr, GLfloat specg, GLfloat specb, GLfloat shine)
  142. {
  143.     float mat[4];
  144.     glPushMatrix();
  145.     glTranslatef (x, y, z);
  146.     mat[0] = ambr; mat[1] = ambg; mat[2] = ambb; mat[3] = 1.0;
  147.     glMaterialfv (GL_FRONT, GL_AMBIENT, mat);
  148.     mat[0] = difr; mat[1] = difg; mat[2] = difb;
  149.     glMaterialfv (GL_FRONT, GL_DIFFUSE, mat);
  150.     mat[0] = specr; mat[1] = specg; mat[2] = specb;
  151.     glMaterialfv (GL_FRONT, GL_SPECULAR, mat);
  152.     glMaterialf (GL_FRONT, GL_SHININESS, shine*128.0);
  153.     glutSolidTeapot(0.5);
  154.     glPopMatrix();
  155. }
  156. /*  display() draws 5 teapots into the accumulation buffer 
  157.  *  several times; each time with a jittered perspective.
  158.  *  The focal point is at z = 5.0, so the gold teapot will 
  159.  *  stay in focus.  The amount of jitter is adjusted by the
  160.  *  magnitude of the accPerspective() jitter; in this example, 0.33.
  161.  *  In this example, the teapots are drawn 8 times.  See jitter.h
  162.  */
  163. void display(void)
  164. {
  165.     int jitter;
  166.     GLint viewport[4];
  167.     glGetIntegerv (GL_VIEWPORT, viewport);
  168.     glClear(GL_ACCUM_BUFFER_BIT);
  169.     for (jitter = 0; jitter < 8; jitter++) {
  170. glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
  171. accPerspective (45.0, 
  172. (GLdouble) viewport[2]/(GLdouble) viewport[3], 
  173. 1.0, 15.0, 0.0, 0.0,
  174. 0.33*j8[jitter].x, 0.33*j8[jitter].y, 5.0);
  175. /* ruby, gold, silver, emerald, and cyan teapots */
  176. renderTeapot (-1.1, -0.5, -4.5, 0.1745, 0.01175, 0.01175,
  177.     0.61424, 0.04136, 0.04136, 0.727811, 0.626959, 0.626959, 0.6);
  178. renderTeapot (-0.5, -0.5, -5.0, 0.24725, 0.1995, 0.0745,
  179.     0.75164, 0.60648, 0.22648, 0.628281, 0.555802, 0.366065, 0.4);
  180. renderTeapot (0.2, -0.5, -5.5, 0.19225, 0.19225, 0.19225,
  181.     0.50754, 0.50754, 0.50754, 0.508273, 0.508273, 0.508273, 0.4);
  182. renderTeapot (1.0, -0.5, -6.0, 0.0215, 0.1745, 0.0215, 
  183.     0.07568, 0.61424, 0.07568, 0.633, 0.727811, 0.633, 0.6);
  184. renderTeapot (1.8, -0.5, -6.5, 0.0, 0.1, 0.06, 0.0, 0.50980392, 
  185.     0.50980392, 0.50196078, 0.50196078, 0.50196078, .25);
  186. glAccum (GL_ACCUM, 0.125);
  187.     }
  188.     glAccum (GL_RETURN, 1.0);
  189.     glFlush();
  190. }
  191. void myReshape(int w, int h)
  192. {
  193.     glViewport(0, 0, w, h);
  194. }
  195. /*  Main Loop
  196.  *  Open window with initial window size, title bar, 
  197.  *  RGBA display mode, depth buffer, and handle input events.
  198.  */
  199. int main(int argc, char** argv)
  200. {
  201.     glutInit(&argc, argv);
  202.     glutInitDisplayMode (GLUT_SINGLE | GLUT_RGB
  203. | GLUT_ACCUM | GLUT_DEPTH);
  204.     glutCreateWindow (argv[0]);
  205.     myinit();
  206.     glutReshapeFunc(myReshape);
  207.     glutDisplayFunc(display);
  208.     glutMainLoop();
  209.     return 0;             /* ANSI C requires main to return int. */
  210. }