-
Notifications
You must be signed in to change notification settings - Fork 0
/
State.java
319 lines (240 loc) · 6.29 KB
/
State.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
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
import java.awt.Color;
public class State {
public static final int COLS = 10;
public static final int ROWS = 21;
public static final int N_PIECES = 7;
public boolean lost = false;
public TLabel label;
//current turn
private int turn = 0;
private int cleared = 0;
//each square in the grid - int means empty - other values mean the turn it was placed
private int[][] field = new int[ROWS][COLS];
//top row+1 of each column
//0 means empty
private int[] top = new int[COLS];
//number of next piece
protected int nextPiece;
//all legal moves - first index is piece type - then a list of 2-length arrays
protected static int[][][] legalMoves = new int[N_PIECES][][];
//indices for legalMoves
public static final int ORIENT = 0;
public static final int SLOT = 1;
//possible orientations for a given piece type
protected static int[] pOrients = {1,2,4,4,4,2,2};
//the next several arrays define the piece vocabulary in detail
//width of the pieces [piece ID][orientation]
protected static int[][] pWidth = {
{2},
{1,4},
{2,3,2,3},
{2,3,2,3},
{2,3,2,3},
{3,2},
{3,2}
};
//height of the pieces [piece ID][orientation]
private static int[][] pHeight = {
{2},
{4,1},
{3,2,3,2},
{3,2,3,2},
{3,2,3,2},
{2,3},
{2,3}
};
private static int[][][] pBottom = {
{{0,0}},
{{0},{0,0,0,0}},
{{0,0},{0,1,1},{2,0},{0,0,0}},
{{0,0},{0,0,0},{0,2},{1,1,0}},
{{0,1},{1,0,1},{1,0},{0,0,0}},
{{0,0,1},{1,0}},
{{1,0,0},{0,1}}
};
private static int[][][] pTop = {
{{2,2}},
{{4},{1,1,1,1}},
{{3,1},{2,2,2},{3,3},{1,1,2}},
{{1,3},{2,1,1},{3,3},{2,2,2}},
{{3,2},{2,2,2},{2,3},{1,2,1}},
{{1,2,2},{3,2}},
{{2,2,1},{2,3}}
};
//initialize legalMoves
{
//for each piece type
for(int i = 0; i < N_PIECES; i++) {
//figure number of legal moves
int n = 0;
for(int j = 0; j < pOrients[i]; j++) {
//number of locations in this orientation
n += COLS+1-pWidth[i][j];
}
//allocate space
legalMoves[i] = new int[n][2];
//for each orientation
n = 0;
for(int j = 0; j < pOrients[i]; j++) {
//for each slot
for(int k = 0; k < COLS+1-pWidth[i][j];k++) {
legalMoves[i][n][ORIENT] = j;
legalMoves[i][n][SLOT] = k;
n++;
}
}
}
}
public int[][] getField() {
return field;
}
public int[] getTop() {
return top;
}
public static int[] getpOrients() {
return pOrients;
}
public static int[][] getpWidth() {
return pWidth;
}
public static int[][] getpHeight() {
return pHeight;
}
public static int[][][] getpBottom() {
return pBottom;
}
public static int[][][] getpTop() {
return pTop;
}
public int getNextPiece() {
return nextPiece;
}
public boolean hasLost() {
return lost;
}
public int getRowsCleared() {
return cleared;
}
public int getTurnNumber() {
return turn;
}
//constructor
public State() {
nextPiece = randomPiece();
}
//random integer, returns 0-6
private int randomPiece() {
return (int)(Math.random()*N_PIECES);
}
//gives legal moves for
public int[][] legalMoves() {
return legalMoves[nextPiece];
}
//make a move based on the move index - its order in the legalMoves list
public void makeMove(int move) {
makeMove(legalMoves[nextPiece][move]);
}
//make a move based on an array of orient and slot
public void makeMove(int[] move) {
makeMove(move[ORIENT],move[SLOT]);
}
//returns false if you lose - true otherwise
public boolean makeMove(int orient, int slot) {
turn++;
//height if the first column makes contact
int height = top[slot]-pBottom[nextPiece][orient][0];
//for each column beyond the first in the piece
for(int c = 1; c < pWidth[nextPiece][orient];c++) {
height = Math.max(height,top[slot+c]-pBottom[nextPiece][orient][c]);
}
//check if game ended
if(height+pHeight[nextPiece][orient] >= ROWS) {
lost = true;
return false;
}
//for each column in the piece - fill in the appropriate blocks
for(int i = 0; i < pWidth[nextPiece][orient]; i++) {
//from bottom to top of brick
for(int h = height+pBottom[nextPiece][orient][i]; h < height+pTop[nextPiece][orient][i]; h++) {
field[h][i+slot] = turn;
}
}
//adjust top
for(int c = 0; c < pWidth[nextPiece][orient]; c++) {
top[slot+c]=height+pTop[nextPiece][orient][c];
}
int rowsCleared = 0;
//check for full rows - starting at the top
for(int r = height+pHeight[nextPiece][orient]-1; r >= height; r--) {
//check all columns in the row
boolean full = true;
for(int c = 0; c < COLS; c++) {
if(field[r][c] == 0) {
full = false;
break;
}
}
//if the row was full - remove it and slide above stuff down
if(full) {
rowsCleared++;
cleared++;
//for each column
for(int c = 0; c < COLS; c++) {
//slide down all bricks
for(int i = r; i < top[c]; i++) {
field[i][c] = field[i+1][c];
}
//lower the top
top[c]--;
while(top[c]>=1 && field[top[c]-1][c]==0) top[c]--;
}
}
}
//pick a new piece
nextPiece = randomPiece();
return true;
}
public void draw() {
label.clear();
label.setPenRadius();
//outline board
label.line(0, 0, 0, ROWS+5);
label.line(COLS, 0, COLS, ROWS+5);
label.line(0, 0, COLS, 0);
label.line(0, ROWS-1, COLS, ROWS-1);
//show bricks
for(int c = 0; c < COLS; c++) {
for(int r = 0; r < top[c]; r++) {
if(field[r][c] != 0) {
drawBrick(c,r);
}
}
}
for(int i = 0; i < COLS; i++) {
label.setPenColor(Color.red);
label.line(i, top[i], i+1, top[i]);
label.setPenColor();
}
label.show();
}
public static final Color brickCol = Color.gray;
private void drawBrick(int c, int r) {
label.filledRectangleLL(c, r, 1, 1, brickCol);
label.rectangleLL(c, r, 1, 1);
}
public void drawNext(int slot, int orient) {
for(int i = 0; i < pWidth[nextPiece][orient]; i++) {
for(int j = pBottom[nextPiece][orient][i]; j <pTop[nextPiece][orient][i]; j++) {
drawBrick(i+slot, j+ROWS+1);
}
}
label.show();
}
//visualization
//clears the area where the next piece is shown (top)
public void clearNext() {
label.filledRectangleLL(0, ROWS+.9, COLS, 4.2, TLabel.DEFAULT_CLEAR_COLOR);
label.line(0, 0, 0, ROWS+5);
label.line(COLS, 0, COLS, ROWS+5);
}
}