-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBouncingBall.java
executable file
·69 lines (59 loc) · 1.53 KB
/
BouncingBall.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
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class BouncingBall extends JPanel implements ActionListener
{
int xPos = 25, yPos = 25, xToGo = 560, yToGo = 840;
public static void main(String[] args)
{
JFrame theFrame = new JFrame("Bouncing Ball");
theFrame.getContentPane().add(new BouncingBall());
theFrame.setResizable(false);
theFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
theFrame.setSize(600,900);
theFrame.setLocation(0,0);
theFrame.setVisible(true);
}
public BouncingBall()
{
Timer t = new Timer(50,this);
t.start();
}
public void paintComponent(Graphics g)
{
super.paintComponent(g);
g.setColor(Color.black);
g.fillRect(0,0,600,900);
g.setColor(Color.red);
g.fillOval(xPos,yPos,15,15);
}
public void actionPerformed(ActionEvent e)
{
// sketchy at best
if (xPos <= xToGo)
xToGo = 560;
if (xPos >= xToGo)
xToGo = 25;
if (xPos < xToGo)
{
xPos += 5;
}
if (xPos > xToGo)
{
xPos -= 5;
}
if (yPos <= yToGo)
yToGo = 840;
if (yPos >= yToGo)
yToGo = 25;
if (yPos < yToGo)
{
yPos += 5;
}
if (yPos > yToGo)
{
yPos -= 5;
}
repaint();
}
}