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

GIS编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 1993-1997, Silicon Graphics, Inc.
  3.  * ALL RIGHTS RESERVED 
  4.  * Permission to use, copy, modify, and distribute this software for 
  5.  * any purpose and without fee is hereby granted, provided that the above
  6.  * copyright notice appear in all copies and that both the copyright notice
  7.  * and this permission notice appear in supporting documentation, and that 
  8.  * the name of Silicon Graphics, Inc. not be used in advertising
  9.  * or publicity pertaining to distribution of the software without specific,
  10.  * written prior permission. 
  11.  *
  12.  * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS"
  13.  * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE,
  14.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR
  15.  * FITNESS FOR A PARTICULAR PURPOSE.  IN NO EVENT SHALL SILICON
  16.  * GRAPHICS, INC.  BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT,
  17.  * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY
  18.  * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION,
  19.  * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF
  20.  * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC.  HAS BEEN
  21.  * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON
  22.  * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE
  23.  * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE.
  24.  * 
  25.  * US Government Users Restricted Rights 
  26.  * Use, duplication, or disclosure by the Government is subject to
  27.  * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph
  28.  * (c)(1)(ii) of the Rights in Technical Data and Computer Software
  29.  * clause at DFARS 252.227-7013 and/or in similar or successor
  30.  * clauses in the FAR or the DOD or NASA FAR Supplement.
  31.  * Unpublished-- rights reserved under the copyright laws of the
  32.  * United States.  Contractor/manufacturer is Silicon Graphics,
  33.  * Inc., 2011 N.  Shoreline Blvd., Mountain View, CA 94039-7311.
  34.  *
  35.  * OpenGL(R) is a registered trademark of Silicon Graphics, Inc.
  36.  */
  37. /*
  38.  *  varray.c
  39.  *  This program demonstrates vertex arrays.
  40.  */
  41. #include <GL/glut.h>
  42. #include <stdio.h>
  43. #include <stdlib.h>
  44. #ifdef GL_VERSION_1_1
  45. #define POINTER 1
  46. #define INTERLEAVED 2
  47. #define DRAWARRAY 1
  48. #define ARRAYELEMENT  2
  49. #define DRAWELEMENTS 3
  50. int setupMethod = POINTER;
  51. int derefMethod = DRAWARRAY;
  52. void setupPointers(void)
  53. {
  54.    static GLint vertices[] = {25, 25,
  55.                        100, 325,
  56.                        175, 25,
  57.                        175, 325,
  58.                        250, 25,
  59.                        325, 325};
  60.    static GLfloat colors[] = {1.0, 0.2, 0.2,
  61.                        0.2, 0.2, 1.0,
  62.                        0.8, 1.0, 0.2,
  63.                        0.75, 0.75, 0.75,
  64.                        0.35, 0.35, 0.35,
  65.                        0.5, 0.5, 0.5};
  66.    glEnableClientState (GL_VERTEX_ARRAY);
  67.    glEnableClientState (GL_COLOR_ARRAY);
  68.    glVertexPointer (2, GL_INT, 0, vertices);
  69.    glColorPointer (3, GL_FLOAT, 0, colors);
  70. }
  71. void setupInterleave(void)
  72. {
  73.    static GLfloat intertwined[] =
  74.       {1.0, 0.2, 1.0, 100.0, 100.0, 0.0,
  75.        1.0, 0.2, 0.2, 0.0, 200.0, 0.0,
  76.        1.0, 1.0, 0.2, 100.0, 300.0, 0.0,
  77.        0.2, 1.0, 0.2, 200.0, 300.0, 0.0,
  78.        0.2, 1.0, 1.0, 300.0, 200.0, 0.0,
  79.        0.2, 0.2, 1.0, 200.0, 100.0, 0.0};
  80.    
  81.    glInterleavedArrays (GL_C3F_V3F, 0, intertwined);
  82. }
  83. void init(void) 
  84. {
  85.    glClearColor (0.0, 0.0, 0.0, 0.0);
  86.    glShadeModel (GL_SMOOTH);
  87.    setupPointers ();
  88. }
  89. void display(void)
  90. {
  91.    glClear (GL_COLOR_BUFFER_BIT);
  92.    if (derefMethod == DRAWARRAY) 
  93.       glDrawArrays (GL_TRIANGLES, 0, 6);
  94.    else if (derefMethod == ARRAYELEMENT) {
  95.       glBegin (GL_TRIANGLES);
  96.       glArrayElement (2);
  97.       glArrayElement (3);
  98.       glArrayElement (5);
  99.       glEnd ();
  100.    }
  101.    else if (derefMethod == DRAWELEMENTS) {
  102.       GLuint indices[4] = {0, 1, 3, 4};
  103.       glDrawElements (GL_POLYGON, 4, GL_UNSIGNED_INT, indices);
  104.    }
  105.    glFlush ();
  106. }
  107. void reshape (int w, int h)
  108. {
  109.    glViewport (0, 0, (GLsizei) w, (GLsizei) h);
  110.    glMatrixMode (GL_PROJECTION);
  111.    glLoadIdentity ();
  112.    gluOrtho2D (0.0, (GLdouble) w, 0.0, (GLdouble) h);
  113. }
  114. /* ARGSUSED2 */
  115. void mouse (int button, int state, int x, int y)
  116. {
  117.    switch (button) {
  118.       case GLUT_LEFT_BUTTON:
  119.          if (state == GLUT_DOWN) {
  120.             if (setupMethod == POINTER) {
  121.                setupMethod = INTERLEAVED;
  122.                setupInterleave();
  123.             }
  124.             else if (setupMethod == INTERLEAVED) {
  125.                setupMethod = POINTER;
  126.                setupPointers();
  127.             }
  128.             glutPostRedisplay();
  129.          }
  130.          break;
  131.       case GLUT_MIDDLE_BUTTON:
  132.       case GLUT_RIGHT_BUTTON:
  133.          if (state == GLUT_DOWN) {
  134.             if (derefMethod == DRAWARRAY) 
  135.                derefMethod = ARRAYELEMENT;
  136.             else if (derefMethod == ARRAYELEMENT) 
  137.                derefMethod = DRAWELEMENTS;
  138.             else if (derefMethod == DRAWELEMENTS) 
  139.                derefMethod = DRAWARRAY;
  140.             glutPostRedisplay();
  141.          }
  142.          break;
  143.       default:
  144.          break;
  145.    }
  146. }
  147. /* ARGSUSED1 */
  148. void keyboard(unsigned char key, int x, int y)
  149. {
  150.    switch (key) {
  151.       case 27:
  152.          exit(0);
  153.          break;
  154.    }
  155. }
  156. int main(int argc, char** argv)
  157. {
  158.    glutInit(&argc, argv);
  159.    glutInitDisplayMode (GLUT_SINGLE | GLUT_RGB);
  160.    glutInitWindowSize (350, 350); 
  161.    glutInitWindowPosition (100, 100);
  162.    glutCreateWindow (argv[0]);
  163.    init ();
  164.    glutDisplayFunc(display); 
  165.    glutReshapeFunc(reshape);
  166.    glutMouseFunc(mouse);
  167.    glutKeyboardFunc (keyboard);
  168.    glutMainLoop();
  169.    return 0;
  170. }
  171. #else
  172. int main(int argc, char** argv)
  173. {
  174.     fprintf (stderr, "This program demonstrates a feature which is not in OpenGL Version 1.0.n");
  175.     fprintf (stderr, "If your implementation of OpenGL Version 1.0 has the right extensions,n");
  176.     fprintf (stderr, "you may be able to modify this program to make it run.n");
  177.     return 0;
  178. }
  179. #endif