home *** CD-ROM | disk | FTP | other *** search
/ Internet Gallery / INTERGAL.bin / intergal / prgs / idv21 / data.z / Blink.bsp < prev    next >
Text File  |  1996-12-19  |  3KB  |  94 lines

  1. /*
  2.  * Copyright (c) 1994-1995 Sun Microsystems, Inc. All Rights Reserved.
  3.  *
  4.  * Permission to use, copy, modify, and distribute this software
  5.  * and its documentation for NON-COMMERCIAL or COMMERCIAL purposes and
  6.  * without fee is hereby granted.
  7.  * Please refer to the file http://java.sun.com/copy_trademarks.html
  8.  * for further important copyright and trademark information and to
  9.  * http://java.sun.com/licensing.html for further important licensing
  10.  * information for the Java (tm) Technology.
  11.  *
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
  13.  * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
  14.  * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  15.  * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
  16.  * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  17.  * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
  18.  *
  19.  * THIS SOFTWARE IS NOT DESIGNED OR INTENDED FOR USE OR RESALE AS ON-LINE
  20.  * CONTROL EQUIPMENT IN HAZARDOUS ENVIRONMENTS REQUIRING FAIL-SAFE
  21.  * PERFORMANCE, SUCH AS IN THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT
  22.  * NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL, DIRECT LIFE
  23.  * SUPPORT MACHINES, OR WEAPONS SYSTEMS, IN WHICH THE FAILURE OF THE
  24.  * SOFTWARE COULD LEAD DIRECTLY TO DEATH, PERSONAL INJURY, OR SEVERE
  25.  * PHYSICAL OR ENVIRONMENTAL DAMAGE ("HIGH RISK ACTIVITIES").  SUN
  26.  * SPECIFICALLY DISCLAIMS ANY EXPRESS OR IMPLIED WARRANTY OF FITNESS FOR
  27.  * HIGH RISK ACTIVITIES.
  28.  */
  29.  
  30. import java.awt.*;
  31. import java.util.StringTokenizer;
  32.  
  33. /**
  34.  * I love blinking things.
  35.  *
  36.  * @author Arthur van Hoff
  37.  */
  38. public class Blink extends java.applet.Applet implements Runnable {
  39.     Thread blinker;
  40.     String lbl;
  41.     Font font;
  42.     int speed;
  43.  
  44.     public void init() {
  45.     font = new java.awt.Font("TimesRoman", Font.PLAIN, 24);
  46.     String att = getParameter("speed");
  47.     speed = (att == null) ? 400 : (1000 / Integer.valueOf(att).intValue());
  48.     att = getParameter("lbl");
  49.     lbl = (att == null) ? "Blink" : att;
  50.     }
  51.     
  52.     public void paint(Graphics g) {
  53.     int x = 0, y = font.getSize(), space;
  54.     int red = (int)(Math.random() * 50);
  55.     int green = (int)(Math.random() * 50);
  56.     int blue = (int)(Math.random() * 256);
  57.     Dimension d = size();
  58.  
  59.     g.setColor(Color.black);
  60.     g.setFont(font);
  61.     FontMetrics fm = g.getFontMetrics();
  62.     space = fm.stringWidth(" ");
  63.     for (StringTokenizer t = new StringTokenizer(lbl) ; t.hasMoreTokens() ; ) {
  64.         String word = t.nextToken();
  65.         int w = fm.stringWidth(word) + space;
  66.         if (x + w > d.width) {
  67.         x = 0;
  68.         y += font.getSize();
  69.         }
  70.         if (Math.random() < 0.5) {
  71.         g.setColor(new java.awt.Color((red + y * 30) % 256, (green + x / 3) % 256, blue));
  72.         } else {
  73.         g.setColor(Color.lightGray);
  74.         }
  75.         g.drawString(word, x, y);
  76.         x += w;
  77.     }
  78.     }
  79.  
  80.     public void start() {
  81.     blinker = new Thread(this);
  82.     blinker.start();
  83.     }
  84.     public void stop() {
  85.     blinker.stop();
  86.     }
  87.     public void run() {
  88.     while (true) {
  89.     try {Thread.currentThread().sleep(speed);} catch (InterruptedException e){}
  90.         repaint();
  91.     }
  92.     }
  93. }
  94.