Compare commits
2 Commits
711a5548ef
...
353afe1cee
Author | SHA1 | Date | |
---|---|---|---|
353afe1cee | |||
c5642f7050 |
@ -30,9 +30,9 @@ public class BrickBuster extends ApplicationAdapter {
|
||||
paddle = new Paddle(this);
|
||||
bricks = new ArrayList<Brick>();
|
||||
for (int col = 0; col < 13; col++) {
|
||||
for (int row = 0; row < 10; row++) {
|
||||
for (int row = 0; row < 7; row++) {
|
||||
int x = 15 + (col * (Brick.BLOCK_WIDTH + 10));
|
||||
int y = 15 + Brick.BLOCK_HEIGHT + (row * (Brick.BLOCK_HEIGHT + 5));
|
||||
int y = 15 + Brick.BLOCK_HEIGHT + (row * (Brick.BLOCK_HEIGHT + 10));
|
||||
bricks.add(new Brick(this, x, HEIGHT - y));
|
||||
}
|
||||
}
|
||||
|
@ -16,7 +16,7 @@ public class Ball extends Entity {
|
||||
public static final Color BALL_COLOR = Color.CHARTREUSE;
|
||||
|
||||
public Vector2 direction;
|
||||
public float speed;
|
||||
public float speed = 300;
|
||||
|
||||
public Ball(BrickBuster brickBuster) {
|
||||
super(brickBuster,BrickBuster.WIDTH/2, Paddle.PADDLE_Y + Paddle.PADDLE_HEIGHT + RADIUS);
|
||||
@ -36,7 +36,7 @@ public class Ball extends Entity {
|
||||
return;
|
||||
}
|
||||
|
||||
Vector2 new_pos = getPos().cpy().add(direction.cpy().scl(speed));
|
||||
Vector2 new_pos = getPos().cpy().add(direction.cpy().scl(speed * dt));
|
||||
|
||||
boolean brick_collision = false;
|
||||
Iterator<Brick> brickIterator = getBrickBuster().getBricks().iterator();
|
||||
@ -52,7 +52,7 @@ public class Ball extends Entity {
|
||||
if (nearest.dst(new_pos.x, new_pos.y) <= RADIUS) {
|
||||
brickIterator.remove();
|
||||
if (getBrickBuster().getBricks().size() <= 39) {
|
||||
speed = 8;
|
||||
speed = 450;
|
||||
}
|
||||
Utils.reflect(direction, segment.nor());
|
||||
brick_collision = true;
|
||||
@ -80,13 +80,12 @@ public class Ball extends Entity {
|
||||
}
|
||||
}
|
||||
|
||||
getPos().add(direction.cpy().scl(speed));
|
||||
getPos().add(direction.cpy().scl(speed * dt));
|
||||
}
|
||||
|
||||
public void launch() {
|
||||
float angle = MathUtils.random(MathUtils.PI/2) + MathUtils.PI/4;
|
||||
direction = new Vector2(MathUtils.cos(angle), MathUtils.sin(angle));
|
||||
speed = 5;
|
||||
}
|
||||
|
||||
public void paddleCollision() {
|
||||
|
Loading…
Reference in New Issue
Block a user