KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > AniArea


1 /*
2  * @(#)AniArea.java 1.18 06/02/22
3  *
4  * Copyright (c) 2006 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 are met:
8  *
9  * -Redistribution of source code must retain the above copyright notice, this
10  * list of conditions and the following disclaimer.
11  *
12  * -Redistribution in binary form must reproduce the above copyright notice,
13  * this list of conditions and the following disclaimer in the documentation
14  * and/or other materials provided with the distribution.
15  *
16  * Neither the name of Sun Microsystems, Inc. or the names of contributors may
17  * be used to endorse or promote products derived from this software without
18  * specific prior written permission.
19  *
20  * This software is provided "AS IS," without a warranty of any kind. ALL
21  * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING
22  * ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
23  * OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN")
24  * AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE
25  * AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
26  * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST
27  * REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL,
28  * INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY
29  * OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE,
30  * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
31  *
32  * You acknowledge that this software is not designed, licensed or intended
33  * for use in the design, construction, operation or maintenance of any
34  * nuclear facility.
35  */

36
37 /*
38  * @(#)AniArea.java 1.18 06/02/22
39  */

40
41 import java.awt.Graphics JavaDoc;
42 import java.util.StringTokenizer JavaDoc;
43 import java.awt.Image JavaDoc;
44 import java.net.URL JavaDoc;
45 import java.net.MalformedURLException JavaDoc;
46
47 /**
48  * This ImageArea provides for a button that animates when the mouse is
49  * over it. The animation is specifed as a base image that contains all
50  * of the animation frames and then a series of X,Y coordinate pairs that
51  * define the top left corner of each new frame.
52  *
53  * @author Chuck McManis
54  * @version 1.18, 02/22/06
55  */

56 class AniArea extends ImageMapArea {
57
58     Image JavaDoc sourceImage;
59     int nFrames;
60     int coords[];
61     int currentFrame = 0;
62
63     public void handleArg(String JavaDoc s) {
64     StringTokenizer JavaDoc st = new StringTokenizer JavaDoc(s, ", ");
65     int i;
66         String JavaDoc imgName;
67
68     imgName = st.nextToken();
69     try {
70         sourceImage = parent.getImage(new URL JavaDoc(parent.getDocumentBase(),
71                           imgName));
72         parent.addImage(sourceImage);
73     } catch (MalformedURLException JavaDoc e) {}
74
75     nFrames = 0;
76     coords = new int[40];
77
78     while (st.hasMoreTokens()) {
79         coords[nFrames*2] = Integer.parseInt(st.nextToken());
80         coords[(nFrames*2)+1] = Integer.parseInt(st.nextToken());
81         nFrames++;
82         if (nFrames > 19)
83         break;
84     }
85     }
86
87     public boolean animate() {
88     if (entered) {
89         repaint();
90     }
91     return entered;
92     }
93
94     public void enter() {
95     currentFrame = 0;
96     parent.startAnimation();
97     }
98
99     public void highlight(Graphics JavaDoc g) {
100     if (entered) {
101         drawImage(g, sourceImage,
102               X-coords[currentFrame*2], Y-coords[(currentFrame*2)+1],
103               X, Y, W, H);
104         currentFrame++;
105         if (currentFrame >= nFrames)
106         currentFrame = 0;
107     }
108     }
109   public String JavaDoc getAppletInfo() {
110     return "Title: AniArea \nAuthor: Chuck McManis \nThis ImageMapArea subclass provides for a button that animates when the mouse is over it. The animation is specifed as a base image that contains all of the animation frames and then a series of X,Y coordinate pairs that define the top left corner of each new frame.";
111   }
112 }
113
114
Free Books   Free Magazines  
Popular Tags