-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGameBonus.java
72 lines (56 loc) · 1.22 KB
/
GameBonus.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
// Alexandra Qin
package DoodleFall;
import java.awt.*;
public class GameBonus
{
private int x_pos_left;
private int x_pos_right;
private int y_pos_up;
private int y_pos_down;
private Image objectPic;
private static Component parent;
public GameBonus()
{
this(parent);
}
public GameBonus(Component parent)
{
// set random position for bonus
x_pos_left = (int)(Math.random() * (GC.APPLET_WIDTH - 30));
x_pos_right = x_pos_left + GC.BONUS_WIDTH;
y_pos_up = (int)(70 + Math.random() * (GC.APPLET_HEIGHT - 80));
y_pos_down = y_pos_up + GC.BONUS_HEIGHT;
}
public void setImages (Image objectPic)
{
this.objectPic = objectPic;
}
public int getXPosLeft()
{
return x_pos_left;
}
public int getXPosRight()
{
return x_pos_right;
}
public int getYPosUp()
{
return y_pos_up;
}
public int getYPosDown()
{
return y_pos_down;
}
public void resetBonus()
{
// reset random position for bonus
x_pos_left = (int)(Math.random() * (GC.APPLET_WIDTH - 30));
x_pos_right = x_pos_left + 10;
y_pos_up = (int)(70 + Math.random() * (GC.APPLET_HEIGHT - 80));
y_pos_down = y_pos_up + 10;
}
public void paintBonus(Graphics g)
{
g.drawImage(objectPic, x_pos_left, y_pos_up, parent);
}
}