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

  1. // $Header: z:/admin/metro_examples/java/demo/NervousText/rcs/NervousText.java 1.1 1997/02/06 00:30:26 IPGIntel-2 Exp $ 
  2. /*
  3.  * @(#)NervousText.java    1.5 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. /*  Daniel Wyszynski 
  33.     Center for Applied Large-Scale Computing (CALC) 
  34.     04-12-95 
  35.  
  36.     Test of text animation.
  37.  
  38.     kwalrath: Changed string; added thread suspension. 5-9-95
  39. */
  40. import java.awt.Graphics;
  41. import java.awt.Font;
  42.  
  43. public class NervousText extends java.applet.Applet implements Runnable {
  44.  
  45.     char separated[];
  46.     String s = null;
  47.     Thread killme = null;
  48.     int i;
  49.     int x_coord = 0, y_coord = 0;
  50.     String num;
  51.     int speed=35;
  52.     int counter =0;
  53.     boolean threadSuspended = false; //added by kwalrath
  54.  
  55. public void init() {
  56.     s = getParameter("text");
  57.     if (s == null) {
  58.         s = "HotJava";
  59.     }
  60.  
  61.     separated =  new char [s.length()];
  62.     s.getChars(0,s.length(),separated,0);
  63.     resize((s.length()+1)*15, 50);
  64.     setFont(new Font("TimesRoman",Font.BOLD,36));
  65.  }
  66.  
  67. public void start() {
  68.     if(killme == null) 
  69.     {
  70.         killme = new Thread(this);
  71.         killme.start();
  72.     }
  73.  }
  74.  
  75. public void stop() {
  76.     killme = null;
  77.  }
  78.  
  79. public void run() {
  80.     while (killme != null) {
  81.     try {Thread.sleep(100);} catch (InterruptedException e){}
  82.     repaint();
  83.     }
  84.     killme = null;
  85.  }
  86.  
  87. public void paint(Graphics g) {
  88.     for(i=0;i<s.length();i++)
  89.     {
  90.     x_coord = (int) (Math.random()*10+15*i);
  91.     y_coord = (int) (Math.random()*10+36);
  92.     g.drawChars(separated, i,1,x_coord,y_coord);
  93.     }
  94.  }
  95.  
  96. /* Added by kwalrath. */
  97. public boolean mouseDown(java.awt.Event evt, int x, int y) {
  98.         if (threadSuspended) {
  99.             killme.resume();
  100.         }
  101.         else {
  102.             killme.suspend();
  103.         }
  104.         threadSuspended = !threadSuspended;
  105.     return true;
  106.     }
  107. }
  108.  
  109.