home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 May / SGI IRIX 6.5 Applications 2004 May.iso / dist / java3d.idb / usr / demos / java / j3d / programs / examples / OffScreenCanvas3D / OffScreenCanvas3D.java.z / OffScreenCanvas3D.java
Encoding:
Java Source  |  2003-08-08  |  3.1 KB  |  99 lines

  1. /*
  2.  *    @(#)OffScreenCanvas3D.java 1.8 02/04/01 15:04:01
  3.  *
  4.  * Copyright (c) 1996-2002 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  *
  10.  * - Redistributions of source code must retain the above copyright
  11.  *   notice, this list of conditions and the following disclaimer.
  12.  *
  13.  * - Redistribution in binary form must reproduce the above copyright
  14.  *   notice, this list of conditions and the following disclaimer in
  15.  *   the documentation and/or other materials provided with the
  16.  *   distribution.
  17.  *
  18.  * Neither the name of Sun Microsystems, Inc. or the names of
  19.  * contributors may be used to endorse or promote products derived
  20.  * from this software without specific prior written permission.
  21.  *
  22.  * This software is provided "AS IS," without a warranty of any
  23.  * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
  24.  * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
  25.  * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
  26.  * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES
  27.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  28.  * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN
  29.  * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
  30.  * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR
  31.  * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF
  32.  * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE,
  33.  * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  34.  *
  35.  * You acknowledge that Software is not designed,licensed or intended
  36.  * for use in the design, construction, operation or maintenance of
  37.  * any nuclear facility.
  38.  */
  39.  
  40. import java.awt.*;
  41. import java.awt.image.BufferedImage;
  42. import java.awt.event.*;
  43. import javax.media.j3d.*;
  44. import javax.vecmath.*;
  45.  
  46.  
  47. class OffScreenCanvas3D extends Canvas3D {
  48.  
  49.   Raster drawRaster;
  50.   boolean printing = false;
  51.  
  52.   public OffScreenCanvas3D(GraphicsConfiguration gconfig, boolean offscreenflag,
  53.             Raster drawRaster) {
  54.  
  55.     super(gconfig, offscreenflag);
  56.     this.drawRaster = drawRaster;
  57.   }
  58.  
  59.   public void print(boolean toWait) {
  60.  
  61.     if (!toWait)
  62.         printing = true;
  63.  
  64.     BufferedImage bImage = new BufferedImage(
  65.                                 200, 200 , BufferedImage.TYPE_INT_ARGB);
  66.  
  67.     ImageComponent2D buffer = new ImageComponent2D(
  68.                                 ImageComponent.FORMAT_RGBA, bImage);
  69.     buffer.setCapability(ImageComponent2D.ALLOW_IMAGE_READ);
  70.  
  71.     this.setOffScreenBuffer(buffer);
  72.     this.renderOffScreenBuffer();
  73.  
  74.     if (toWait) {
  75.     this.waitForOffScreenRendering();
  76.     drawOffScreenBuffer();
  77.     }
  78.   }
  79.  
  80.   public void postSwap() {
  81.    
  82.     if (printing) {
  83.         super.postSwap();
  84.     drawOffScreenBuffer();
  85.     printing = false;
  86.     }
  87.   }
  88.  
  89.   void drawOffScreenBuffer() {
  90.  
  91.     BufferedImage bImage = this.getOffScreenBuffer().getImage();
  92.     ImageComponent2D newImageComponent = new ImageComponent2D(
  93.         ImageComponent.FORMAT_RGBA, bImage);
  94.  
  95.     drawRaster.setImage(newImageComponent);
  96.   }
  97. }
  98.  
  99.