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 / FourByFour / Canvas2D.java.z / Canvas2D.java
Encoding:
Java Source  |  2003-08-08  |  2.9 KB  |  88 lines

  1. /*
  2.  *    @(#)Canvas2D.java 1.9 02/04/01 15:03:28
  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.event.*;
  42. import java.awt.image.*;
  43.  
  44. /**
  45.  * Class:       Canvas2D
  46.  *
  47.  * Description: Used to respond to mouse events in the 2D window.
  48.  *
  49.  * Version:     1.0
  50.  *
  51.  */
  52. class Canvas2D extends Canvas implements MouseListener {
  53.  
  54.    Image backbuffer;          // Backbuffer image
  55.    Graphics gc;               // Graphics context of backbuffer
  56.    Board board;               // Game board
  57.  
  58.    Canvas2D(Board board) {
  59.       this.board = board;
  60.    }
  61.  
  62.    public void setBuffer(Image backbuffer) {
  63.       this.backbuffer = backbuffer;
  64.       gc = backbuffer.getGraphics();
  65.    }
  66.  
  67.    public void update(Graphics g) {
  68.       paint(g);
  69.    }
  70.  
  71.    public void paint(Graphics g) {
  72.       if (board != null) {
  73.          board.render2D(gc);
  74.          g.drawImage(backbuffer, 0, 0, this);
  75.       }
  76.    }
  77.  
  78.    public void mousePressed(MouseEvent e) {
  79.       board.checkSelection2D(e.getX(), e.getY(), 1);
  80.       repaint();
  81.    }
  82.  
  83.    public void mouseClicked(MouseEvent  e) {}
  84.    public void mouseReleased(MouseEvent e) {}
  85.    public void mouseEntered(MouseEvent  e) {}
  86.    public void mouseExited(MouseEvent   e) {}
  87. }
  88.