This repository has been archived by the owner on Sep 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBufferedAnimate.java
77 lines (67 loc) · 2.07 KB
/
BufferedAnimate.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package com.hkt.tutorial.algorithms.ds;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.Insets;
import java.awt.image.BufferedImage;
import java.util.Timer;
import java.util.TimerTask;
import javax.swing.JFrame;
@SuppressWarnings("serial")
public class BufferedAnimate extends JFrame {
private static int DELAY = 100;
Image buffer;
Dimension oldSize;
Insets insets;
Color colors[] = { Color.RED, Color.ORANGE, Color.YELLOW, Color.GREEN, Color.BLUE, Color.MAGENTA };
public void paint(Graphics g) {
if ((oldSize == null) || (oldSize != getSize())) {
oldSize = getSize();
buffer = new BufferedImage(getWidth(), getHeight(), BufferedImage.TYPE_INT_RGB);
}
if (insets == null) {
insets = getInsets();
}
// Calculate each time in case of resize
int x = insets.left;
int y = insets.top;
int width = getWidth() - insets.left - insets.right;
int height = getHeight() - insets.top - insets.bottom;
int start = 0;
int steps = colors.length;
int stepSize = 360 / steps;
synchronized (colors) {
Graphics bufferG = buffer.getGraphics();
bufferG.setColor(Color.WHITE);
bufferG.fillRect(x, y, width, height);
for (int i = 0; i < steps; i++) {
bufferG.setColor(colors[i]);
bufferG.fillArc(x, y, width, height, start, stepSize);
start += stepSize;
}
}
g.drawImage(buffer, 0, 0, this);
}
public void go() {
TimerTask task = new TimerTask() {
public void run() {
Color c = colors[0];
synchronized (colors) {
System.arraycopy(colors, 1, colors, 0, colors.length - 1);
colors[colors.length - 1] = c;
}
repaint();
}
};
Timer timer = new Timer();
timer.schedule(task, 0, DELAY);
}
public static void main(String args[]) {
BufferedAnimate f = new BufferedAnimate();
f.setSize(200, 200);
f.setTitle("Buffered");
f.show();
f.go();
}
}