home *** CD-ROM | disk | FTP | other *** search
/ BUG 15 / BUGCD1998_06.ISO / aplic / jbuilder / jsamples.z / SoundArea.java < prev    next >
Text File  |  1997-07-30  |  4KB  |  123 lines

  1. // $Header: z:/admin/metro_examples/java/demo/ImageMap/rcs/SoundArea.java 1.1 1997/02/06 00:30:12 IPGIntel-2 Exp $ 
  2. /*
  3.  * @(#)SoundArea.java    1.7 96/12/06
  4.  *
  5.  * Copyright (c) 1994-1996 Sun Microsystems, Inc. All Rights Reserved.
  6.  *
  7.  * Sun grants you ("Licensee") a non-exclusive, royalty free, license to use,
  8.  * modify and redistribute this software in source and binary code form,
  9.  * provided that i) this copyright notice and license appear on all copies of
  10.  * the software; and ii) Licensee does not utilize the software in a manner
  11.  * which is disparaging to Sun.
  12.  *
  13.  * This software is provided "AS IS," without a warranty of any kind. ALL
  14.  * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
  15.  * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
  16.  * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE
  17.  * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
  18.  * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS
  19.  * LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
  20.  * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
  21.  * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
  22.  * OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
  23.  * POSSIBILITY OF SUCH DAMAGES.
  24.  *
  25.  * This software is not designed or intended for use in on-line control of
  26.  * aircraft, air traffic, aircraft navigation or aircraft communications; or in
  27.  * the design, construction, operation or maintenance of any nuclear
  28.  * facility. Licensee represents and warrants that it will not use or
  29.  * redistribute the Software for such purposes.
  30.  */
  31.  
  32. import java.awt.Graphics;
  33. import java.applet.AudioClip;
  34. import java.net.URL;
  35. import java.net.MalformedURLException;
  36.  
  37. /**
  38.  * An audio feedback ImageArea class.
  39.  * This class extends the basic ImageArea Class to play a sound when
  40.  * the user enters the area.
  41.  *
  42.  * @author     Jim Graham
  43.  * @author     Chuck McManis
  44.  * @version     1.7, 12/06/96
  45.  */
  46. class SoundArea extends ImageMapArea {
  47.     /** The URL of the sound to be played. */
  48.     URL sound;
  49.     AudioClip soundData = null;
  50.     boolean hasPlayed; 
  51.     boolean isReady = false;
  52.     long    lastExit = 0;
  53.     final static int HYSTERESIS = 1500;
  54.  
  55.     /**
  56.      * The argument is the URL of the sound to be played.
  57.      */
  58.     public void handleArg(String arg) {
  59.     try {
  60.         sound = new URL(parent.getDocumentBase(), arg);
  61.     } catch (MalformedURLException e) {
  62.         sound = null;
  63.     }
  64.     hasPlayed = false;
  65.     }
  66.  
  67.     /**
  68.      * The applet thread calls the getMedia() method when the applet
  69.      * is started.
  70.      */
  71.     public void getMedia() {
  72.     if (sound != null && soundData == null) {
  73.         soundData = parent.getAudioClip(sound);
  74.     }
  75.     if (soundData == null) {
  76.         System.out.println("SoundArea: Unable to load data "+sound);
  77.     }
  78.     isReady = true;
  79.     }
  80.  
  81.     /**
  82.      * The enter method is called when the mouse enters the area.
  83.      * The sound is played if the mouse has been outside of the
  84.      * area for more then the delay indicated by HYSTERESIS.
  85.      */
  86.     public void enter() {
  87.     // is the sound sample loaded?
  88.     if (! isReady) {
  89.         parent.showStatus("Loading media file...");
  90.         return;
  91.     }
  92.  
  93.     /*
  94.       * So we entered the selection region, play the sound if
  95.      * we need to. Track the mouse entering and exiting the
  96.      * the selection box. If it doesn't stay out for more than
  97.      * "HYSTERESIS" millis, then don't re-play the sound.
  98.      */
  99.     long now = System.currentTimeMillis();
  100.     if (Math.abs(now - lastExit) < HYSTERESIS) {
  101.         // if within the window pretend that it was played.
  102.         hasPlayed = true;
  103.             return;
  104.     }
  105.  
  106.     // Else play the sound.
  107.     if (! hasPlayed && (soundData != null)) {
  108.         hasPlayed = true;
  109.         soundData.play();
  110.     }
  111.     }
  112.  
  113.     /**
  114.      * The exit method is called when the mouse leaves the area.
  115.      */
  116.     public void exit() {
  117.     if (hasPlayed) {
  118.         hasPlayed = false;
  119.         lastExit = System.currentTimeMillis(); // note the time of exit
  120.     }
  121.     }
  122. }
  123.