forked from shah-smit/JavaTutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleGoo1.java
More file actions
executable file
·121 lines (79 loc) · 1.95 KB
/
SimpleGoo1.java
File metadata and controls
executable file
·121 lines (79 loc) · 1.95 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
package simplegraphics;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.RenderingHints;
import javax.swing.JFrame;
import javax.swing.JPanel;
public abstract class SimpleGoo1 {
private JFrame frame;
private GooPanel gooPanel;
private boolean loop = true;
private boolean smooth = false;
private int width, height;
private Color backgroundColor = Color.white;
private int frameTime = 50;
private RenderingHints renderingHints = new RenderingHints(
RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
class GooPanel extends JPanel {
private static final long serialVersionUID = 1L;
public void paintComponent(Graphics g) {
Graphics2D g2d = (Graphics2D) g;
if (smooth)
g2d.setRenderingHints(renderingHints);
g2d.setColor(backgroundColor);
g2d.fillRect(0, 0, this.getWidth(), this.getHeight());
draw(g2d);
}
}
public SimpleGoo1() {
this(300, 300);
}
public SimpleGoo1(int w, int h) {
width = w;
height = h;
gooPanel = new GooPanel();
frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(gooPanel);
frame.setSize(width, height);
}
public abstract void draw(Graphics g);
public void smooth() {
smooth = true;
}
public void noSmooth() {
smooth = false;
}
public void frameRate(double framesPerSec) {
frameTime = (int) (1000 / framesPerSec);
}
public void background(int gscale) {
background(gscale, gscale, gscale);
}
public void background(int red, int green, int blue) {
backgroundColor = new Color(red, green, blue);
}
public int getWidth() {
return width;
}
public int getHeight() {
return height;
}
public void noloop() {
loop = false;
}
public void loop() {
loop = true;
}
public void go() {
frame.setVisible(true);
while (loop) {
gooPanel.repaint();
try {
Thread.sleep(frameTime);
} catch (InterruptedException e) {
}
}
}
}