-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDrawObject.java
59 lines (45 loc) · 1005 Bytes
/
DrawObject.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
import java.util.Random;
public abstract class DrawObject {
/**
* constructor of its children should have another parameter d
* @param x
* @param y
*/
public DrawObject(){
x = Attribute.COL_NUM /2;
y = 0;
lock=false;
}
protected int x;
protected int y;
public abstract void draw();
protected int direction;
protected int DIRECTION_NUMBER;
public abstract int getDirection();
/**
* TODO implement this method using exeption
*/
public void changeDirection(){
nullMe();
setDirection();
draw();
}
private boolean lock;
public boolean isLocked(){
return lock;
}
public void lock(){
lock = true;
}
public void unlock(){
lock = false;
}
public abstract void setDirection();
public abstract int getX();
public abstract int getY();
public abstract void setX(int x);
public abstract void setY(int y);
public abstract boolean move(int xChange, int yChange);
public abstract boolean reachBottom();
protected abstract void nullMe();
}