-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMovable.java
More file actions
130 lines (108 loc) · 2.71 KB
/
Movable.java
File metadata and controls
130 lines (108 loc) · 2.71 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
import java.net.*;
public class Movable extends ImageDisplay
{
protected Boolean moving = false;
protected Boolean stopForCleaner = false;
private MoveThread moveThread;
private int xLastDir, yLastDir;
public void makeVisible()
{
setVisible( (Boolean)true );
}
public void makeInvisible()
{
setVisible( (Boolean)false );
}
public void placeObject( int x, int y )
{
xPos = x;
yPos = y;
xLastDir = 0;
yLastDir = 0;
makeTheMove();
}
public void moveObject( MovementDetails details )
{
if ( !isMoving() )
{
moving = true;
moveThread = new MoveThread( this );
moveThread.addDetails( details );
( moveThread ).start();
}
}
public Boolean updateMove( int xTarget, int yTarget, int speed, MovementDetails details )
{
int xDis = xTarget - xPos;
int yDis = yTarget - yPos;
double vLength = Math.sqrt( xDis * xDis + yDis * yDis );
double xVec = xDis / vLength;
double yVec = yDis / vLength;
int xNew = xPos + (int)(xVec * speed);
int yNew = yPos + (int)(yVec * speed);
if ( willCross(xTarget, xPos, xNew) && willCross(yTarget,yPos,yNew) )
{
xPos = xTarget;
yPos = yTarget;
makeTheMove();
stopCon();
return true;
}
xPos =(int) (xPos + xVec * speed);
yPos += yVec * speed;
updateDir( calcDir( xVec, yVec) );
makeTheMove();
return false;
}
//methods overwritten by MovableWithDir
void updateDir( int dir ) {}
void stopCon() {}
void finalDir( int dir ) {};
public int calcDir( double x, double y )
{
if ( Math.abs(x) > Math.abs(y) )
{
if ( x > 0 )
return 1;
else
return 3;
} else {
if ( y > 0 )
return 2;
else
return 0;
}
}
private Boolean willCross( int target, int cur, int newC )
{
if ( cur > target )
{
if ( target >= newC )
return true;
}else{
if ( newC >= target )
return true;
}
return false;
}
public Boolean isMoving()
{
return moving;
}
protected void setMoving( Boolean newMoving )
{
moving = newMoving;
}
public Boolean getVisible()
{
return visible;
}
public void setVisible( Boolean visible )
{
this.visible = visible;
}
public Boolean getStopForCleaner()
{
return stopForCleaner;
}
}