-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMovementDetails.java
More file actions
232 lines (200 loc) · 4.81 KB
/
MovementDetails.java
File metadata and controls
232 lines (200 loc) · 4.81 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
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
import java.util.ArrayList;
import java.net.*;
public class MovementDetails
{
private ArrayList<MovementType> typeList;
private ArrayList<Integer> xList;
private ArrayList<Integer> yList;
private ArrayList<Integer> speedList;
private ArrayList<Integer> pauseTimeList;
private Erik erik;
private Ian ian;
private Rubbish rubbish;
private Page page;
private EndGame endgame;
private int curIndex;
private int totalEntries;
private int finalDir = -1;
Boolean repeat;
MovementDetails()
{
typeList = new ArrayList<MovementType>(3);
xList = new ArrayList<Integer>(3);
yList = new ArrayList<Integer>(3);
speedList = new ArrayList<Integer>(3);
pauseTimeList = new ArrayList<Integer>(3);
totalEntries = 0;
curIndex = 0;
repeat = false;
}
public void addEntry( int x, int y, int speed )
{
typeList.add( MovementType.MoveToTarget );
xList.add( x );
yList.add( y );
speedList.add( speed );
pauseTimeList.add( null );
totalEntries++;
}
public void addEntry( int pauseTime )
{
typeList.add( MovementType.Pause );
xList.add( null );
yList.add( null );
speedList.add( null );
pauseTimeList.add( pauseTime );
totalEntries++;
}
public void addEntry( Erik obj )
{
typeList.add( MovementType.ThrowRubbish );
xList.add( null );
yList.add( null );
speedList.add( null );
pauseTimeList.add( null );
erik = obj;
totalEntries++;
}
public void addEntry( Ian obj )
{
typeList.add( MovementType.RubbishAtIan );
xList.add( null );
yList.add( null );
speedList.add( null );
pauseTimeList.add( null );
ian = obj;
totalEntries++;
}
public void addEntry( Rubbish obj )
{
typeList.add( MovementType.RubbishAtBin );
xList.add( null );
yList.add( null );
speedList.add( null );
pauseTimeList.add( null );
rubbish = obj;
totalEntries++;
}
public void addStartToBag( Page obj )
{
typeList.add( MovementType.StartToBag );
xList.add( null );
yList.add( null );
speedList.add( null );
pauseTimeList.add( null );
page = obj;
totalEntries++;
}
public void addReturnWithoutBag( Page obj )
{
typeList.add( MovementType.ReturnWithoutBag );
xList.add( null );
yList.add( null );
speedList.add( null );
pauseTimeList.add( null );
page = obj;
totalEntries++;
}
public void addPageSitDown( Page obj )
{
typeList.add( MovementType.PageSitDown );
xList.add( null );
yList.add( null );
speedList.add( null );
pauseTimeList.add( null );
page = obj;
totalEntries++;
}
public void addEveryoneStop( EndGame obj )
{
typeList.add( MovementType.EveryoneStop );
xList.add( null );
yList.add( null );
speedList.add( null );
pauseTimeList.add( null );
endgame = obj;
totalEntries++;
}
public void addDisplayLoseScreen( EndGame obj )
{
typeList.add( MovementType.DisplayLoseScreen );
xList.add( null );
yList.add( null );
speedList.add( null );
pauseTimeList.add( null );
endgame = obj;
totalEntries++;
}
public void addFinalDir( int dir )
{
finalDir = dir;
}
public int getFinalDir()
{
return finalDir;
}
public void restartIndex()
{
curIndex = 0;
}
public Boolean isMore()
{
return ( curIndex < totalEntries - 1 );
}
public void nextIndex()
{
curIndex++;
}
public MovementType getCurType()
{
return typeList.get( curIndex );
}
public int getCurX()
{
return xList.get( curIndex );
}
public int getCurY()
{
return yList.get( curIndex );
}
public int getCurSpeed()
{
return speedList.get( curIndex );
}
public int getCurPause()
{
return pauseTimeList.get( curIndex );
}
public void runThrowRubbish()
{
erik.throwRubbish();
}
public void rubbishAtIan()
{
ian.rubbishAtIan();
}
public void rubbishAtBin()
{
rubbish.atBin();
}
public void startToBag()
{
page.startToBag();
}
public void returnWithoutBag()
{
page.returnWithoutBag();
}
public void pageSitDown()
{
page.pageSitDown();
}
public void everyoneStop()
{
endgame.everyoneStop();
}
public void displayLoseScreen()
{
endgame.displayLoseScreen();
}
}