-
Notifications
You must be signed in to change notification settings - Fork 0
/
Stand.java
64 lines (54 loc) · 1.52 KB
/
Stand.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
package com.javarush.task.task24.task2413;
/**
* Подставка, с помощью которой отражаем мячик.
*/
public class Stand extends BaseObject {
//картинка для отрисовки
private static int[][] matrix = {
{1, 1, 1, 1, 1},
{1, 0, 0, 0, 1},
{0, 0, 0, 0, 0},
{0, 0, 0, 0, 0},
{0, 0, 0, 0, 0},
};
//скорость
private double speed = 1;
//направление (-1 влево, +1 вправо)
private double direction = 0;
public Stand(double x, double y) {
super(x, y, 3);
}
/**
* Метод передвигает подставку в соответствии с текущим значением direction.
*/
void move() {
double dx = speed * direction;
x = x + dx;
checkBorders(radius, Arkanoid.game.getWidth() - radius + 1, 1, Arkanoid.game.getHeight() + 1);
}
/**
* direction устанавливается равным -1
*/
void moveLeft() {
direction = -1;
}
/**
* direction устанавливается равным +1
*/
void moveRight() {
direction = 1;
}
public double getSpeed() {
return speed;
}
public double getDirection() {
return direction;
}
/**
* Отрисовываем себя на холсте
*/
@Override
void draw(Canvas canvas) {
canvas.drawMatrix(x - radius + 1, y, matrix, 'M');
}
}