-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGamer.java
More file actions
188 lines (175 loc) · 5.03 KB
/
Copy pathGamer.java
File metadata and controls
188 lines (175 loc) · 5.03 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
import java.awt.*;
import java.awt.geom.*;
import java.util.ArrayList;
/**
* Write a description of class Gamer here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class Gamer
{
/** description of instance variable x (add comment for each instance variable) */
Ellipse2D.Double circle;
Rectangle victorySquare;
Color color;
private int initialX;
private int initialY;
private int initialOtherX;
private int initialOtherY;
private int x;
private int y;
private Rectangle [][] blackSquares;
/**
* Default constructor for objects of class Gamer
*/
public Gamer()
{
color = Color.RED;
blackSquares = new Rectangle[10][10];
}
public void draw(Graphics2D g2)
{
g2.setColor(Color.BLACK);
for (int i = 0; i < blackSquares.length; i++){
for (int j = 0; j < blackSquares[0].length; j++){
if (blackSquares[i][j] != null)
{
g2.draw(blackSquares[i][j]);
g2.fill(blackSquares[i][j]);
}
}
}
g2.setColor(Color.GREEN);
g2.draw(victorySquare);
g2.fill(victorySquare);
g2.setColor(color);
g2.draw(circle);
g2.fill(circle);
}
public void resetBall()
{
x = initialX;
y = initialY;
circle = new Ellipse2D.Double(x, y, 50, 50);
}
public void moveBall(int xChange, int yChange)
{
x += xChange;
y += yChange;
circle = new Ellipse2D.Double(x, y, 50, 50);
}
public void setSquares(int level)
{
if (level > 3) {
System.out.println("Good job, you beat the game!");
}
else
{
for (int i = 0; i < blackSquares.length; i++)
{
for (int j = 0; j < blackSquares[0].length; j++)
{
blackSquares[i][j] = null;
}
}
setEverything(level);
}
}
public void setEverything(int level)
{
if (level == 1)
{
initialX = 310;
initialY = 640;
resetBall();
initialOtherX = 690;
initialOtherY = 310;
for (int i = 0; i < blackSquares.length; i++)
{
for (int j = 0; j < blackSquares[0].length; j++)
{
if (i < 3 || j < 3 || i > 6 || j > 6){
blackSquares[i][j] = new Rectangle((100 * i), (100 * j), 100, 100);
}
}
}
}
else if (level == 2)
{
initialX = 640;
initialY = 640;
resetBall();
initialOtherX = 690;
initialOtherY = 310;
for (int i = 0; i < blackSquares.length; i++)
{
for (int j = 0; j < blackSquares[0].length; j++)
{
if (i < 3 || j < 3 || i > 6 || j > 6){
blackSquares[i][j] = new Rectangle((100 * i), (100 * j), 100, 100);
}
if ((j == 5 || j == 4) && i > 3)
{
blackSquares[i][j] = new Rectangle((100 * i), (100 * j), 100, 100);
}
}
}
}
else
{
initialX = 0;
initialY = 900;
resetBall();
initialOtherX = 950;
initialOtherY = 50;
for (int i = 0; i < blackSquares.length; i++)
{
for (int j = 0; j < blackSquares[0].length; j++)
{
if (i % 4 == 0 && (j > 0 && j < 9))
{
blackSquares[i][j] = new Rectangle((100 * i), (100 * j), 100, 100);
}
else if (i % 2 == 0 && (j > 0 && j < 9))
{
blackSquares[i][j] = new Rectangle((100 * i), (100 * j), 100, 100);
}
}
}
}
victorySquare = new Rectangle(initialOtherX, initialOtherY, 5, 5);
}
public boolean checkCollision()
{
boolean collided = false;
for (int i = 0; i < blackSquares.length; i++)
{
for (int j = 0; j < blackSquares[0].length; j++)
{
if (blackSquares[i][j] != null){
if (circle.intersects(blackSquares[i][j].getX(), blackSquares[i][j].getY(),blackSquares[i][j].getWidth(),blackSquares[i][j].getHeight())){
collided = true;
}
}
}
}
return collided;
}
public boolean checkVictory()
{
if (circle.intersects(victorySquare))
{
return true;
}
return false;
}
public int getInitialX()
{
return initialX;
}
public int getInitialY()
{
return initialY;
}
}