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

GIS编程

开发平台:

Visual C++

  1. /* Copyright (c) Mark J. Kilgard, 1996. */
  2. /* This program is freely distributable without licensing fees  and is
  3.    provided without guarantee or warrantee expressed or  implied. This
  4.    program is -not- in the public domain. */
  5. /* This demo shows off InfiniteReality's "dynamic video resize" (DVR)
  6.    capability.  Dynamic video resizing let's you maintain a constant frame
  7.    rate even when the view becomes limited by your hardware's pixel fill
  8.    rate.  The idea is simple:  Draw the fill-limited frame into a smaller
  9.    area (ie, touch less pixels) and then have the video hardware "zoom" up
  10.    the image to fill the video screen.  This trick does require special
  11.    hardware.
  12.    As written with no command line options, this demo works well on a 1RM
  13.    InfiniteReality.  It keeps a scene containing colored large orbs that
  14.    rotate around the viewer at a constant 60 frames/sec, even though the
  15.    number of viewable orbs is changing (hence the required fullscreen pixel
  16.    fill rate is changing too).  The demo adapts the rendered image size and
  17.    video resizing based on the last frame to keep a constant frame rate. */
  18. /****************************************************************
  19. Command line arguments:
  20.   -window ... run in a window instead of full screen and will not use
  21.      hardware resizing even if the hardware supports it.  Good for
  22.      demos.
  23.   -novidresize ... start without using video resize hardware even though
  24.      the system might really support video resizing.
  25.   -debug ... output frame size to stdout.
  26.   -target # ... sets the target frame rate in increments of 60th of
  27.       a second; the default is 1.
  28.   -twosnaps ... sample the last frame rate as the average of the last
  29.       two frames; the default is to simply use the last frame.
  30.   -nice ... better tesselate the orbs; nice if you have transformation
  31.       rate to burn (ie, use an InfiniteReality).
  32.   -orbs # ... an initial number of orbs to populate the viewing space;
  33.       the default is 80.
  34. Example command lines:
  35.   Because this program's behavior depends on adapting to the speed of the
  36.   system it is running at, a good demonstration of this program may depend
  37.   on the system performance.  Adjust the command line options accordingly,
  38.   particularly -target and -orbs.
  39.   InfiniteReality (1RM) ... "videoresize"
  40.     (For the hardware listed below, you won't get actual video resizing
  41.      since the hardware lacks the support.)
  42.   Indigo^2 XL 200Mhz ... "videoresize -geometry 800x600 -target 5 -orbs 40 -window"
  43. Key controls:
  44.   ESC or q ... exit the demo.
  45.   n ... disable dynamic video resizing.
  46.   r ... enable dynamic video resizing (the default if hardware video
  47.      resizing is detected; otherwise no video resizing is the
  48.      default). 
  49.      
  50.      NOTE: you can enable dynamic video resizing even without the
  51.      hardware and the demo will show you how the rendered area would
  52.      vary as if the feature were supported.
  53.   h ... toggle use of hardware video resizing (only if in fullscreen
  54.      mode and the hardware supports the feature).
  55.   m ... toggle display of the frame meter.  Enabled by default.
  56.   c ... toggle display of the cursor.  Sometimes it is nice to see the
  57.      cursor when video resizing so that you can see the effect of the
  58.      video resizing since the cursor resizes too, but in general a
  59.      resizing cursor is quite distracting.  The cursor is enabled if
  60.      hardware video resizing is to be used.
  61.   Up arrow ... add 10 more orbs.
  62.   Down arrow ... subtract 10 less orbs.
  63.   Spacebar ... regenerate the set of viewing orbs.
  64.   Right arrow ... increase rightward rotation.
  65.   Left arrow ... increase rightward rotation.
  66. Frame meter:
  67.   The frame meter shows how long each frame takes to render.  It
  68.   operates differently depending on if video resizing is being
  69.   demonstrated or not.
  70.   The meter line is BLUE when video resizing is not being demonstrated.
  71.   When video resizing is being demonstrated, a GREEN meter line
  72.   indicates the frame is being shown at full (non-resized) resolution.
  73.   YELLOW indicates the frame is being video resized.  RED indicates the
  74.   frame is being resized so much that dropping a frame is better than
  75.   the resulting poor resize quality (the demo won't zoom anymore than 8
  76.   to 1).  A smaller MAGENTA line shows a calculation of the
  77.   "unadjusted" frame rate for the displayed scene.  When the MAGENTA
  78.   line is longer than the base line, it is showing a relative measure
  79.   of how much resizing was needed to keep the frame at a sustained
  80.   frame rate.
  81. Bugs:
  82.   This program assumes a frame rate of 60 Hz.
  83.   This program should use InfiniteReality's SGIX_instruments
  84.   extension for better fill rate measurement.
  85. *****************************************************************/
  86. #include <GL/glut.h>
  87. #include <stdlib.h>
  88. #include <stdio.h>
  89. #include <string.h>
  90. #include <math.h>
  91. #if !defined(_WIN32)
  92. #include <unistd.h>
  93. #else
  94. #define lrand48() (0)
  95. #define srand48(x) (0)
  96. #define getpid() (0)
  97. #endif
  98. #define OVERLOAD 0
  99. #define ZOOMED 1
  100. #define UNZOOMED 2
  101. #define STATIC 3
  102. GLfloat state_colors[4][3] =
  103. {
  104.   {1.0, 0.0, 0.0},
  105.   {0.8, 0.8, 0.0},
  106.   {0.0, 0.7, 0.0},
  107.   {0.3, 0.3, 0.8},
  108. };
  109. int state;
  110. extern void sphere(int level);
  111. GLdouble angle, speed = 0.5;
  112. GLfloat light0_ambient[] =
  113. {0.1, 0.1, 0.1, 1.0};
  114. GLfloat light0_diffuse[] =
  115. {0.5, 0.5, 0.5, 1.0};
  116. GLfloat light0_position[] =
  117. {0.0, 0.0, 0.0, 1.0};
  118. typedef struct {
  119.   GLfloat offset;
  120.   GLfloat distance;
  121.   GLfloat size;
  122.   GLfloat *color;
  123. } Orb;
  124. Orb *orbs = NULL;
  125. int num_orbs = 80;      /* Good default for 1 RM InfiniteReality. */
  126. int fullscreen = 1;
  127. int debug = 0;
  128. int video_resizing = 1;
  129. int hw_video_resizing = 1;  /* Assume we have it until told otherwise. */
  130. int hw_exists = 0;
  131. int frame_time = 15;
  132. int sphere_quality = 1;
  133. int max_w, max_h;
  134. GLfloat W, H;
  135. int delta_w_resize = 1, delta_h_resize = 1;
  136. GLfloat target_frame_time = 1000.0 / 60.0;
  137. int show_cursor = 1, show_meter = 1;
  138. #define NUM_SNAPS 2
  139. int snap[NUM_SNAPS] =
  140. {0};
  141. int num_snaps = 1;
  142. int frame = 0;
  143. GLfloat color[][3] =
  144. {
  145.   {0.0, 0.5, 0.0},
  146.   {0.5, 0.5, 0.0},
  147.   {1.0, 0.0, 0.5},
  148.   {0.0, 1.0, 0.5},
  149.   {1.0, 0.0, 0.0},
  150.   {1.0, 0.0, 1.0},
  151.   {0.0, 0.0, 0.8},
  152.   {0.0, 0.2, 0.5},
  153.   {1.0, 1.0, 0.0},
  154.   {1.0, 1.0, 1.0},
  155.   {0.3, 0.3, 0.3},
  156. };
  157. int num_colors = sizeof(color) / (sizeof(GLfloat) * 3);
  158. void
  159. calculate_frame_rate(int delta)
  160. {
  161.   int sum, count, i;
  162.   snap[frame] = delta;
  163.   frame += 1;
  164.   frame %= num_snaps;
  165.   sum = 0;
  166.   count = 0;
  167.   for (i = 0; i < num_snaps; i++) {
  168.     if (snap[i] != 0) {
  169.       sum += snap[i];
  170.       count++;
  171.     }
  172.   }
  173.   frame_time = sum / count;
  174. }
  175. void
  176. advancedAnimation(void)
  177. {
  178.   angle = (GLfloat) fmod(angle + speed, 360.0);
  179.   glutPostRedisplay();
  180. }
  181. void
  182. resize(int w, int h)
  183. {
  184.   glViewport(0, 0, w, h);
  185.   glMatrixMode(GL_PROJECTION);
  186.   glLoadIdentity();
  187.   gluPerspective(50.0, (GLfloat) w / (GLfloat) h, 1.0, 100.0);
  188.   glMatrixMode(GL_MODELVIEW);
  189. }
  190. void
  191. reshape(int w, int h)
  192. {
  193.   max_w = w;
  194.   max_h = h;
  195.   W = w;
  196.   H = h;
  197.   resize(w, h);
  198. }
  199. void
  200. do_video_resize_logic(void)
  201. {
  202.   GLfloat frame_ratio, adjusted_area, dimension_scale;
  203.   GLfloat area;
  204.   int Wint, Hint;
  205.   if (frame_time > (target_frame_time * 0.92)) {
  206.     /* Shrink case. */
  207.     frame_ratio = (target_frame_time * 0.92) / frame_time;
  208.     area = W * H;
  209.     adjusted_area = area * frame_ratio;
  210.     dimension_scale = sqrt(adjusted_area) / sqrt(area);
  211.     W = dimension_scale * W;
  212.     H = dimension_scale * H;
  213.     if (W < max_w / 8 || H < max_h / 8) {
  214.       W = max_w / 8;
  215.       H = max_h / 8;
  216.       state = OVERLOAD;
  217.     } else {
  218.       state = ZOOMED;
  219.     }
  220.     Wint = (((int) W) / delta_w_resize) * delta_w_resize;
  221.     Hint = (((int) H) / delta_h_resize) * delta_h_resize;
  222.     if (video_resizing) {
  223.       if (hw_video_resizing)
  224.         glutVideoResize(0, 0, -Wint, -Hint);
  225.       resize(Wint, Hint);
  226.     }
  227.   } else if (frame_time < (target_frame_time * 0.82)) {
  228.     /* Grow case. */
  229.     frame_ratio = (target_frame_time * 0.82) / frame_time;
  230.     area = W * H;
  231.     adjusted_area = area * frame_ratio;
  232.     dimension_scale = sqrt(adjusted_area) / sqrt(area);
  233.     /* Be a bit conservative about our growth.  As Allan Greenspan would say, 
  234.        "You don't want to overheat the economy; put on the brakes." */
  235.     dimension_scale = (dimension_scale - 1.0) * 0.75 + 1.0;
  236.     if (dimension_scale > 1.5) {
  237.       dimension_scale = 1.5;
  238.     }
  239.     W = dimension_scale * W;
  240.     H = dimension_scale * H;
  241.     if (W > max_w || H > max_h) {
  242.       W = max_w;
  243.       H = max_h;
  244.       state = UNZOOMED;
  245.     } else {
  246.       state = ZOOMED;
  247.     }
  248.     Wint = (((int) W) / delta_w_resize) * delta_w_resize;
  249.     Hint = (((int) H) / delta_h_resize) * delta_h_resize;
  250.     if (video_resizing) {
  251.       if (hw_video_resizing)
  252.         glutVideoResize(0, 0, -Wint, -Hint);
  253.       resize(Wint, Hint);
  254.     }
  255.   } else {
  256.     if (!hw_video_resizing) {
  257.       /* We keep the meter constant size, so we must keep restoring our
  258.          viewport. */
  259.       Wint = (((int) W) / delta_w_resize) * delta_w_resize;
  260.       Hint = (((int) H) / delta_h_resize) * delta_h_resize;
  261.       glViewport(0, 0, Wint, Hint);
  262.     }
  263.   }
  264.   if (debug)
  265.     printf("%gx%gnn", W, H);
  266. }
  267. void
  268. display(void)
  269. {
  270.   int i, start, stop;
  271.   if (video_resizing)
  272.     do_video_resize_logic();
  273.   start = glutGet(GLUT_ELAPSED_TIME);
  274.   glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
  275.   glEnable(GL_DEPTH_TEST);
  276.   glEnable(GL_LIGHTING);
  277.   glMatrixMode(GL_MODELVIEW);
  278.   glLoadIdentity();
  279.   gluLookAt(0.0, 0.0, 1.0,
  280.     0.0, 0.0, 0.0,
  281.     0.0, 1.0, 0.0);
  282.   glTranslatef(0.0, 0.0, -1.0);
  283.   for (i = 0; i < num_orbs; i++) {
  284.     glPushMatrix();
  285.     glRotatef(angle + orbs[i].offset, 0.0, 1.0, 0.0);
  286.     glTranslatef(0.0, 0.0, orbs[i].distance);
  287.     glScalef(orbs[i].size, orbs[i].size, orbs[i].size);
  288.     glColor3fv(orbs[i].color);
  289.     glCallList(1);
  290.     glPopMatrix();
  291.   }
  292.   if (show_meter) {
  293.     if (!hw_video_resizing) {
  294.       /* Make sure the meter stays constant size in window mode. */
  295.       glViewport(0, 0, max_w, max_h);
  296.     }
  297.     glMatrixMode(GL_PROJECTION);
  298.     glPushMatrix();
  299.     glLoadIdentity();
  300.     gluOrtho2D(0, 3000, 0, 3000);
  301.     glMatrixMode(GL_MODELVIEW);
  302.     glPushMatrix();
  303.     glLoadIdentity();
  304.     glDisable(GL_DEPTH_TEST);
  305.     glDisable(GL_LIGHTING);
  306.     glColor3fv(state_colors[state]);
  307.     glRecti(100, 100, 100 + frame_time * 8, 200);
  308.     if (video_resizing) {
  309.       float render_area = W * H, full_area = max_w * max_h;
  310.       float advantage = sqrt(full_area / render_area);
  311.       glColor3f(1.0, 0.0, 1.0);
  312.       glRecti(100, 140, 100 + frame_time * advantage * 8, 160);
  313.     }
  314.     glColor3f(1.0, 1.0, 1.0);
  315.     glBegin(GL_LINES);
  316.     for (i = 0; i < 21; i++) {
  317.       glVertex2f(100 + i * 16.6 * 8, 80);
  318.       glVertex2f(100 + i * 16.6 * 8, 220);
  319.     }
  320.     glEnd();
  321.     glPopMatrix();
  322.     glMatrixMode(GL_PROJECTION);
  323.     glPopMatrix();
  324.   }
  325.   glFinish();
  326.   stop = glutGet(GLUT_ELAPSED_TIME);
  327.   glutSwapBuffers();
  328.   calculate_frame_rate(stop - start);
  329. }
  330. void
  331. visible(int vis)
  332. {
  333.   if (vis == GLUT_VISIBLE)
  334.     glutIdleFunc(advancedAnimation);
  335.   else
  336.     glutIdleFunc(NULL);
  337. }
  338. void
  339. set_cursor(int on)
  340. {
  341.   if (on) {
  342.     glutSetCursor(GLUT_CURSOR_INHERIT);
  343.   } else {
  344.     glutSetCursor(GLUT_CURSOR_NONE);
  345.   }
  346. }
  347. void
  348. generate_orbs(void)
  349. {
  350.   int i, r, angle, chance, delta, d;
  351.   if (orbs)
  352.     free(orbs);
  353.   orbs = (Orb *) malloc(num_orbs * sizeof(Orb));
  354.   i = 0;
  355.   angle = 0;
  356.   while (i < num_orbs) {
  357.     angle += 37;
  358.     angle %= 360;
  359.     r = (int) lrand48();
  360.     chance = abs(r % 360 - 180);
  361.     delta = chance - abs(angle - 180);
  362.     if (delta > 0) {
  363.       orbs[i].color = color[lrand48() % num_colors];
  364.       orbs[i].offset = angle;
  365.       d = (r % 20) + (delta / 180.0) * 10;
  366.       orbs[i].distance = d + 3.0;
  367.       orbs[i].size = 1.4 * exp(d / 8.0) / exp(1.0);
  368.       i++;
  369.     }
  370.   }
  371. }
  372. /* ARGSUSED */
  373. void
  374. keyboard(unsigned char k, int x, int y)
  375. {
  376.   switch (k) {
  377.   case 27:
  378.   case 'q':
  379.   case 'Q':
  380.     exit(0);
  381.     break;
  382.   case 'R':
  383.   case 'r':
  384.     video_resizing = 1;
  385.     break;
  386.   case 'H':
  387.   case 'h':
  388.     if (hw_exists) {
  389.       hw_video_resizing = 1 - hw_video_resizing;
  390.       if (!hw_video_resizing) {
  391.         glutVideoResize(0, 0, max_w, max_h);
  392.         resize(max_w, max_h);
  393.       }
  394.     }
  395.     break;
  396.   case 'N':
  397.   case 'n':
  398.     video_resizing = 0;
  399.     if (hw_video_resizing)
  400.       glutVideoResize(0, 0, max_w, max_h);
  401.     resize(max_w, max_h);
  402.     state = STATIC;
  403.     break;
  404.   case 'D':
  405.   case 'd':
  406.     debug = 1;
  407.     break;
  408.   case 'M':
  409.   case 'm':
  410.     show_meter = 1 - show_meter;
  411.     break;
  412.   case ' ':
  413.     generate_orbs();
  414.     break;
  415.   case 'C':
  416.   case 'c':
  417.     show_cursor = 1 - show_cursor;
  418.     set_cursor(show_cursor);
  419.     break;
  420.   }
  421. }
  422. /* ARGSUSED */
  423. void
  424. special(int k, int x, int y)
  425. {
  426.   switch (k) {
  427.   case GLUT_KEY_RIGHT:
  428.     speed -= 0.25;
  429.     break;
  430.   case GLUT_KEY_LEFT:
  431.     speed += 0.25;
  432.     break;
  433.   case GLUT_KEY_UP:
  434.     num_orbs += 10;
  435.     generate_orbs();
  436.     break;
  437.   case GLUT_KEY_DOWN:
  438.     num_orbs -= 10;
  439.     generate_orbs();
  440.     break;
  441.   }
  442. }
  443. int
  444. main(int argc, char **argv)
  445. {
  446.   int i;
  447.   glutInit(&argc, argv);
  448.   for (i = 1; i < argc; i++) {
  449.     if (!strcmp(argv[i], "-orbs")) {
  450.       i++;
  451.       if (i >= argc) {
  452.         fprintf(stderr, "videoresize: need number of orbsn");
  453.         exit(1);
  454.       }
  455.       num_orbs = atoi(argv[i]);
  456.       if (num_orbs < 1) {
  457.         fprintf(stderr, "videoresize: number of orbs must be 1 or moren");
  458.         exit(1);
  459.       }
  460.     } else if (!strcmp(argv[i], "-target")) {
  461.       i++;
  462.       if (i >= argc) {
  463.         fprintf(stderr, "videoresize: need target number of framesn");
  464.         exit(1);
  465.       }
  466.       target_frame_time = atoi(argv[i]) * 1000.0 / 60.0;
  467.       if (target_frame_time <= 0.0) {
  468.         fprintf(stderr, "videoresize: target frames must be 1 or moren");
  469.         exit(1);
  470.       }
  471.     } else if (!strcmp(argv[i], "-novidresize")) {
  472.       hw_video_resizing = 0;
  473.     } else if (!strcmp(argv[i], "-debug")) {
  474.       debug = 1;
  475.     } else if (!strcmp(argv[i], "-window")) {
  476.       fullscreen = 0;
  477.     } else if (!strcmp(argv[i], "-twosnaps")) {
  478.       num_snaps = 2;
  479.     } else if (!strcmp(argv[i], "-nice")) {
  480.       sphere_quality = 2;
  481.     } else {
  482.       printf("usage: videoresize [-window] [-twosnaps] [-nice] [-target #] [-orbs #]n");
  483.       printf("  -target #    = target number of frame intervals to stay under (default=%g)n", target_frame_time);
  484.       printf("  -orbs #      = number of orbs to randomly position (default=%d)n", num_orbs);
  485.       printf("  -window      = do not go fullscreenn");
  486.       printf("  -nice        = use better tesselated spheresn");
  487.       printf("  -novidresize = even if videoresizing is supported, don't use itn");
  488.       printf("  -twosnaps    = averages over last two frames instead of just estimatingn");
  489.       printf("                 based on the last framen");
  490.       exit(1);
  491.     }
  492.   }
  493.   glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH | GLUT_MULTISAMPLE);
  494.   glutCreateWindow("Dynamic video resizing for constant frame rates");
  495.   if (fullscreen) {
  496.     glutFullScreen();
  497.     if (glutVideoResizeGet(GLUT_VIDEO_RESIZE_POSSIBLE)) {
  498.       delta_w_resize = glutVideoResizeGet(GLUT_VIDEO_RESIZE_WIDTH_DELTA);
  499.       delta_h_resize = glutVideoResizeGet(GLUT_VIDEO_RESIZE_HEIGHT_DELTA);
  500.       show_cursor = 0;
  501.       glutSetupVideoResizing();
  502.       hw_exists = 1;
  503.     } else {
  504.       hw_video_resizing = 0;
  505.     }
  506.   } else {
  507.     hw_video_resizing = 0;
  508.   }
  509.   if (video_resizing) {
  510.     state = UNZOOMED;
  511.   } else {
  512.     state = STATIC;
  513.   }
  514.   glutReshapeFunc(reshape);
  515.   glDisable(GL_CULL_FACE);  /* Makes us more fill limited. */
  516.   glEnable(GL_LIGHT0);
  517.   glColorMaterial(GL_FRONT, GL_DIFFUSE);
  518.   glEnable(GL_COLOR_MATERIAL);
  519.   glEnable(GL_NORMALIZE);
  520.   glLightfv(GL_LIGHT0, GL_AMBIENT, light0_ambient);
  521.   glLightfv(GL_LIGHT0, GL_DIFFUSE, light0_diffuse);
  522.   glLightfv(GL_LIGHT0, GL_POSITION, light0_position);
  523.   glNewList(1, GL_COMPILE);
  524.   sphere(sphere_quality);
  525.   glEndList();
  526.   srand48(getpid() * 16 + glutGet(GLUT_ELAPSED_TIME));
  527.   generate_orbs();
  528.   glutDisplayFunc(display);
  529.   glutVisibilityFunc(visible);
  530.   glutKeyboardFunc(keyboard);
  531.   glutSpecialFunc(special);
  532.   set_cursor(show_cursor);
  533.   glutMainLoop();
  534.   return 0;             /* ANSI C requires main to return int. */
  535. }