home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 November / Chip_1998-11_cd.bin / tema / Cafe / WDESAMPL.BIN / MouseTrack.java < prev    next >
Text File  |  1997-04-01  |  4KB  |  118 lines

  1. /*
  2.  * @(#)MouseTrack.java    1.2 96/12/06
  3.  *
  4.  * Copyright (c) 1994-1996 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Sun grants you ("Licensee") a non-exclusive, royalty free, license to use,
  7.  * modify and redistribute this software in source and binary code form,
  8.  * provided that i) this copyright notice and license appear on all copies of
  9.  * the software; and ii) Licensee does not utilize the software in a manner
  10.  * which is disparaging to Sun.
  11.  *
  12.  * This software is provided "AS IS," without a warranty of any kind. ALL
  13.  * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
  14.  * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
  15.  * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE
  16.  * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
  17.  * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS
  18.  * LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
  19.  * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
  20.  * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
  21.  * OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
  22.  * POSSIBILITY OF SUCH DAMAGES.
  23.  *
  24.  * This software is not designed or intended for use in on-line control of
  25.  * aircraft, air traffic, aircraft navigation or aircraft communications; or in
  26.  * the design, construction, operation or maintenance of any nuclear
  27.  * facility. Licensee represents and warrants that it will not use or
  28.  * redistribute the Software for such purposes.
  29.  */
  30.  
  31. import java.awt.Graphics;
  32. import java.lang.Math;
  33.  
  34. public class MouseTrack extends java.applet.Applet {
  35.  
  36.     int mx, my;
  37.     int onaroll;
  38.  
  39.     public void init() {
  40.     onaroll = 0;
  41.     resize(500, 500);
  42.     }
  43.  
  44.     public void paint(Graphics g) {
  45.     g.drawRect(0, 0, size().width - 1, size().height - 1);
  46.     mx = (int)(Math.random()*1000) % (size().width - (size().width/10));
  47.     my = (int)(Math.random()*1000) % (size().height - (size().height/10));
  48.     g.drawRect(mx, my, (size().width/10) - 1, (size().height/10) - 1);
  49.     }
  50.  
  51.     /*
  52.      * Mouse methods
  53.      */
  54.     public boolean mouseDown(java.awt.Event evt, int x, int y) {
  55.     requestFocus();
  56.     if((mx < x && x < mx+size().width/10-1) && (my < y && y < my+size().height/10-1)) {
  57.         if(onaroll > 0) {
  58.         switch(onaroll%4) {
  59.         case 0:
  60.             play(getCodeBase(), "sounds/tiptoe.thru.the.tulips.au");
  61.             break;
  62.         case 1:
  63.             play(getCodeBase(), "sounds/danger,danger...!.au");
  64.             break;
  65.         case 2:
  66.             play(getCodeBase(), "sounds/adapt-or-die.au");
  67.             break;
  68.         case 3:
  69.             play(getCodeBase(), "sounds/cannot.be.completed.au");
  70.             break;
  71.         }
  72.         onaroll++;
  73.         if(onaroll > 5)
  74.             getAppletContext().showStatus("You're on your way to THE HALL OF FAME:"
  75.             + onaroll + "Hits!");
  76.         else
  77.             getAppletContext().showStatus("YOU'RE ON A ROLL:" + onaroll + "Hits!");
  78.         }
  79.         else {
  80.         getAppletContext().showStatus("HIT IT AGAIN! AGAIN!");
  81.         play(getCodeBase(), "sounds/that.hurts.au");
  82.         onaroll = 1;
  83.         }
  84.     }
  85.     else {
  86.         getAppletContext().showStatus("You hit nothing at (" + x + ", " + y + "), exactly\n");
  87.         play(getCodeBase(), "sounds/thin.bell.au");
  88.         onaroll = 0;
  89.     }
  90.     repaint();
  91.     return true;
  92.     }
  93.  
  94.     public boolean mouseMove(java.awt.Event evt, int x, int y) {
  95.     if((x % 3 == 0) && (y % 3 == 0))
  96.         repaint();
  97.     return true;
  98.     }
  99.  
  100.     public void mouseEnter() {
  101.     repaint();
  102.     }
  103.  
  104.     public void mouseExit() {
  105.     onaroll = 0;
  106.     repaint();
  107.     }
  108.  
  109.     /**
  110.      * Focus methods
  111.      */
  112.     public void keyDown(int key) {
  113.     requestFocus();
  114.     onaroll = 0;
  115.     play(getCodeBase(), "sounds/ip.au");
  116.     }
  117. }
  118.