-
Notifications
You must be signed in to change notification settings - Fork 0
/
GameObj.java
315 lines (280 loc) · 10.2 KB
/
GameObj.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
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
package org.cis1200.brickBreaker;
import java.awt.*;
/**
* An object in the game.
*
* Game objects exist in the game court. They have a position, velocity, size
* and bounds. Their velocity controls how they move; their position should
* always be within their bounds.
*/
public abstract class GameObj {
/*
* Current position of the object (in terms of graphics coordinates)
*
* Coordinates are given by the upper-left hand corner of the object. This
* position should always be within bounds:
* 0 <= px <= maxX 0 <= py <= maxY
*/
private int px;
private int py;
/* Size of object, in pixels. */
private int width;
private int height;
/* Velocity: number of pixels to move every time move() is called. */
private int vx;
private int vy;
/*
* Upper bounds of the area in which the object can be positioned. Maximum
* permissible x, y positions for the upper-left hand corner of the object.
*/
private final int maxX;
private final int maxY;
/**
* Constructor
*/
public GameObj(
int vx, int vy, int px, int py, int width, int height, int courtwidth,
int courtheight
) {
this.vx = vx;
this.vy = vy;
this.px = px;
this.py = py;
this.width = width;
this.height = height;
// take the width and height into account when setting the bounds for
// the upper left corner of the object.
this.maxX = courtwidth - width;
this.maxY = courtheight - height;
}
// **********************************************************************************
// * GETTERS
// **********************************************************************************
public int getPx() {
return this.px;
}
public int getPy() {
return this.py;
}
public int getVx() {
return this.vx;
}
public int getVy() {
return this.vy;
}
public int getWidth() {
return this.width;
}
public int getHeight() {
return this.height;
}
// **************************************************************************
// * SETTERS
// **************************************************************************
public void setPx(int px) {
this.px = px;
clip();
}
public void setPy(int py) {
this.py = py;
// clip();
}
public void setVx(int vx) {
this.vx = vx;
}
public void setVy(int vy) {
this.vy = vy;
}
public void setWidth(int w) {
this.width = w;
}
public void setHeight(int h) {
this.height = h;
}
// **************************************************************************
// * UPDATES AND OTHER METHODS
// **************************************************************************
/**
* Prevents the object from going outside the bounds of the area
* designated for the object (i.e. Object cannot go outside the active
* area the user defines for it).
*/
private void clip() {
this.px = Math.min(Math.max(this.px, 0), this.maxX);
this.py = Math.min(Math.max(this.py, 0), this.maxY);
}
/**
* Moves the object by its velocity. Ensures that the object does not go
* outside its bounds by clipping.
*/
public void move() {
this.px += this.vx;
this.py += this.vy;
clip();
}
/**
* Determine whether this game object is currently intersecting another
* object.
*
* Intersection is determined by comparing bounding boxes. If the bounding
* boxes overlap, then an intersection is considered to occur.
*
* @param that The other object
* @return Whether this object intersects the other object.
*/
public boolean intersects(GameObj that) {
return (this.px + this.width >= that.px
&& this.py + this.height >= that.py
&& that.px + that.width >= this.px
&& that.py + that.height >= this.py);
}
/**
* Determine whether this game object will intersect another in the next
* time step, assuming that both objects continue with their current
* velocity.
*
* Intersection is determined by comparing bounding boxes. If the bounding
* boxes (for the next time step) overlap, then an intersection is
* considered to occur.
*
* @param that The other object
* @return Whether an intersection will occur.
*/
public boolean willIntersect(GameObj that) {
int thisNextX = this.px + this.vx;
int thisNextY = this.py + this.vy;
int thatNextX = that.px + that.vx;
int thatNextY = that.py + that.vy;
return (thisNextX + this.width >= thatNextX
&& thisNextY + this.height >= thatNextY
&& thatNextX + that.width >= thisNextX
&& thatNextY + that.height >= thisNextY);
}
/**
* Update the velocity of the object in response to hitting an obstacle in
* the given direction. If the direction is null, this method has no effect
* on the object.
*
* @param d The direction in which this object hit an obstacle
*/
public void bounce(org.cis1200.brickBreaker.Direction d) {
if (d == null) {
return;
}
switch (d) {
case UP:
this.vy = Math.abs(this.vy);
break;
case DOWN:
this.vy = -Math.abs(this.vy);
break;
case LEFT:
this.vx = Math.abs(this.vx);
break;
case RIGHT:
this.vx = -Math.abs(this.vx);
break;
default:
break;
}
}
/**
* Determine whether the game object will hit a wall in the next time step.
* If so, return the direction of the wall in relation to this game object.
*
* @return Direction of impending wall, null if all clear.
*/
public org.cis1200.brickBreaker.Direction hitWall() {
if (this.px + this.vx < 0) {
return org.cis1200.brickBreaker.Direction.LEFT;
} else if (this.px + this.vx > this.maxX) {
return org.cis1200.brickBreaker.Direction.RIGHT;
}
if (this.py + this.vy < 0) {
return org.cis1200.brickBreaker.Direction.UP;
} else if (this.py + this.vy > this.maxY) {
return org.cis1200.brickBreaker.Direction.DOWN;
} else {
return null;
}
}
/**
* Determine whether the game object will hit another object in the next
* time step. If so, return the direction of the other object in relation to
* this game object.
*
* As you read through the code, it might be useful to draw things out and
* visualize the unit circle.
*
* @param that The other object
* @return Direction of impending object after collision, or null if no
* collision.
*/
public org.cis1200.brickBreaker.Direction hitObj(GameObj that) {
if (this.willIntersect(that)) {
/*
* Note that this.px + halfThiswidth = position of the rightmost side of the
* object,
* and this.py + halfThisheight = position of the top side of the object.
* The reason why we are getting these measures is to be able to calculate the
* above.
*/
double halfThiswidth = (double) this.width / 2;
double halfThatwidth = (double) that.width / 2;
double halfThisheight = (double) this.height / 2;
double halfThatheight = (double) that.height / 2;
final double PI_OVER_4 = Math.PI / 4;
/*
* dx represents the horizontal distance between "this" and "that".
* dy represents the vertical distance between "this" and "that".
* We are getting these measures because we are trying to build a triangle
* in order to calculate an angle (more specifically, the angle between
* adjacent and hypotenuse through arc-cosine).
*/
double dx = that.px + halfThatwidth - (this.px + halfThiswidth);
double dy = that.py + halfThatheight - (this.py + halfThisheight);
double theta = Math.acos(dx / (Math.sqrt(dx * dx + dy * dy)));
/*
* As you read through the following, it will be useful to visualize
* the unit circle
* Link: https://etc.usf.edu/clipart/43200/43205/unit-circle13_43205.htm
*/
if (theta <= PI_OVER_4) {
/*
* For example, if theta is >= 0 and <= pi/4, after collision
* "that" must be going right
*/
return org.cis1200.brickBreaker.Direction.RIGHT;
} else if (theta <= Math.PI - PI_OVER_4) {
/*
* Remember that the coordinate system for GUIs is switched; this means
* since (0,0) is in the top left corner, if "this" is above "that", it will
* have
* a lower y-value, and dy will therefore be positive. In this case, since
* "that"
* is below "this", "that" will be moving downards post-collision.
*/
if (dy > 0) {
return org.cis1200.brickBreaker.Direction.DOWN;
} else {
return org.cis1200.brickBreaker.Direction.UP;
}
} else {
return Direction.LEFT;
}
} else {
return null;
}
}
/**
* Default draw method that provides how the object should be drawn in the
* GUI. This method does not draw anything. Subclass should override this
* method based on how their object should appear.
*
* @param g The <code>Graphics</code> context used for drawing the object.
* Remember graphics contexts that we used in OCaml, it gives the
* context in which the object should be drawn (a canvas, a frame,
* etc.)
*/
public abstract void draw(Graphics g);
}