-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLetterSoup.java
More file actions
404 lines (356 loc) · 13.1 KB
/
LetterSoup.java
File metadata and controls
404 lines (356 loc) · 13.1 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
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
import java.util.Random;
class LetterSoup
{
private char [][] matrix;
private char [][] matrixAux;
private String [] words = { "pez", "oso","ave","boa","lobo","gato"};
private char [] abc = {'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','x','w','y','z'};
private Random r = new Random();
private int row,col, size, cont, cont2;
public LetterSoup (int size) //creates a matrix of order size*size
{
this.size = size;
this.matrix = new char [this.size][this.size];
this.matrixAux = new char [this.size][this.size];
this.cleanMatrix(this.matrix);
this.setPosition();
this.randomABC(this.matrix);
}
public void cleanMatrix (char [][] matrixToClean)
{
for (int i = 0; i < size; i++)
for (int j = 0; j< size; j++)
matrixToClean[i][j] = '0';
}
public void cleanVector(char [] vector)
{
for (int i = 0; i < vector.length; i++)
vector [i] = '0';
}
public char [][] getMatrix ()
{
return this.matrix;
}
public char getABC (int i)
{
return this.abc[i];
}
public void randomABC (char [][] matrixR) //filling in matrix of random letters
{
int x;
for(int i = 0; i<this.size; i++)
for (int j = 0; j<this.size; j++)
if(matrixR[i][j] == '0')
{
x = r.nextInt(26);
matrixR [i][j] = getABC(x);
}
}
public int getOnMatrixAux (int r, int c) //filling in with '1' the position on the matrix that the word can't be on it
{ //and returning the number of the positions that contains '1'
int counting1 = 0;
this.matrixAux [r][c] = '1';
for (int i = 0; i<this.size; i++)
for (int j = 0; j<this.size; j++)
if (this.matrixAux[i][j] == '1')
counting1 ++;
return counting1;
}
public void setPosition () //this function selects randomly the form for the word can be write on matrix
{ //if the word selected can't be wrote in any form inside matrix, the main matrix in cleaned
int rand, x = 0, i = 0; //and start again until the whole words can be write inside matrix
boolean flag = true;
char [] vAux = new char [8];
String word;
while (i<words.length)
{
word = words[i];
i++;
do
{
rand = r.nextInt(8);
if(vAux[rand] != '1')
{
switch(rand)
{
case 0: flag = horizontal(word); vAux [0] = '1'; break; //this set of functions writes the words
case 1: flag = horizontalI(word); vAux [1] = '1'; break; //inside matrix as they name indicates
case 2: flag = vertical(word); vAux [2] = '1'; break;
case 3: flag = verticalI(word); vAux [3] = '1'; break;
case 4: flag = diagonalL(word); vAux [4] = '1'; break;
case 5: flag = diagonalLI(word); vAux [5] = '1'; break;
case 6: flag = diagonalR(word); vAux [6] = '1'; break;
case 7: flag = diagonalRI(word); vAux [7] = '1'; break;
}
}
for(int z = 0; z<vAux.length; z++)
if(vAux[z] == '1')
x++;
if (x == 8)
{
cleanMatrix(this.matrix);
i=0;
break;
}
}while(flag);
this.cleanVector(vAux);
}
}
public boolean horizontal (String word)
{
cleanMatrix(this.matrixAux);
int condicion = 0;
while(condicion != this.size*this.size)
{
this.row = r.nextInt(this.size);
this.col = r.nextInt(this.size);
if((this.col + word.length() )<= this.size)
{
this.cont = 0; this.cont2 = 0;
for (int i = col; i < (word.length()+col); i++)
{
if (this.matrix[this.row][i] == '0' || matrix[this.row][i] == word.charAt(this.cont2))
this.cont++;
this.cont2++;
}
if(this.cont == word.length())
{
for(int i = 0; i<word.length(); i++)
{
this.matrix[this.row][this.col] = word.charAt(i);
this.col++;
}
return false;
}
}
condicion = getOnMatrixAux(this.row,this.col);
}
return true;
}
public boolean horizontalI(String word)
{
cleanMatrix(this.matrixAux);
int condicion = 0;
while(condicion != this.size*this.size)
{
this.row = r.nextInt(this.size);
this.col = r.nextInt(this.size);
if((this.col +1) - word.length() >= 0)
{
this.cont = 0; this.cont2 = 0;
int x = col;
while (x>=((this.col+1)-word.length())){
if (this.matrix[this.row][x] == '0' || this.matrix[this.row][x] == word.charAt(this.cont2))
this.cont++;
this.cont2++;
x--;
}
if(this.cont == word.length())
{
for(int i = 0; i<word.length(); i++)
{
this.matrix[this.row][this.col] = word.charAt(i);
this.col--;
}
return false;
}
}
condicion = getOnMatrixAux(this.row, this.col);
}
return true;
}
public boolean vertical (String word)
{
cleanMatrix(this.matrixAux);
int condicion = 0;
while (condicion != this.size*this.size)
{
this.row = r.nextInt(this.size);
this.col = r.nextInt(this.size);
if(this.row + word.length() <= this.size)
{
this.cont = 0; this.cont2 = 0;
for (int i = this.row; i < (word.length()+this.row); i++)
{
if (this.matrix[i][this.col] == '0' || this.matrix[i][this.col] == word.charAt(this.cont2))
this.cont++;
this.cont2++;
}
if (this.cont == word.length())
{
for(int i = 0; i<word.length(); i++)
{
this.matrix[this.row][this.col] = word.charAt(i);
this.row ++;
}
return false;
}
}
condicion = getOnMatrixAux(this.row,this.col);
}
return true;
}
public boolean verticalI (String word)
{
cleanMatrix(this.matrixAux);
int condicion = 0;
while (condicion != this.size*this.size)
{
this.row = r.nextInt(this.size);
this.col = r.nextInt(this.size);
if((this.row + 1) - word.length() >= 0)
{
this.cont = 0; this.cont2 = 0;
for (int i = this.row; i >= (this.row + 1) - word.length(); i--)
{
if (this.matrix[i][this.col] == '0' || this.matrix[i][this.col] == word.charAt(this.cont2))
this.cont++;
this.cont2++;
}
if (cont == word.length())
{
for(int i = 0; i<word.length(); i++)
{
this.matrix[this.row][this.col] = word.charAt(i);
this.row --;
}
return false;
}
}
condicion = getOnMatrixAux(this.row,this.col);
}
return true;
}
public boolean diagonalL(String word)
{
cleanMatrix(this.matrixAux);
int condicion = 0;
while (condicion != this.size*this.size)
{
this.row = r.nextInt(this.size);
this.col = r.nextInt(this.size);
if((this.row + 1) - word.length() >= 0 && this.col + word.length() <= this.size)
{
this.cont = 0; this.cont2 = 0;
int x = this.row, j = this.col;
while(x >= ((this.row + 1) - word.length()) && j <= (this.col + word.length()))
{
if(this.matrix[x][j] == '0' || this.matrix[x][j] == word.charAt(cont2))
this.cont++;
this.cont2++;
x--; j++;
}
if(this.cont == word.length())
{
for(int i = 0; i < word.length(); i++)
{
this.matrix[this.row][this.col] = word.charAt(i);
this.row--; this.col++;
}
return false;
}
}
condicion = getOnMatrixAux(this.row,this.col);
}
return true;
}
public boolean diagonalLI(String word)
{
cleanMatrix(this.matrixAux);
int condicion = 0;
while (condicion != this.size*this.size)
{
this.row = r.nextInt(this.size);
this.col = r.nextInt(this.size);
if(this.row + word.length() <= this.size && (this.col + 1) - word.length() >= 0)
{
this.cont = 0; this.cont2 = 0;
int x = this.row, j = this.col;
while(x <= (this.row + word.length()) && j >= ((this.col+1) - word.length()))
{
if(this.matrix[x][j] == '0' || this.matrix[x][j] == word.charAt(this.cont2))
this.cont++;
this.cont2++;
x++; j--;
}
if(this.cont == word.length())
{
for(int i = 0; i < word.length(); i++)
{
this.matrix[this.row][this.col] = word.charAt(i);
this.row++; this.col--;
}
return false;
}
}
condicion = getOnMatrixAux(this.row, this.col);
}
return true;
}
public boolean diagonalR(String word)
{
cleanMatrix(this.matrixAux);
int condicion = 0;
while (condicion != this.size*this.size)
{
this.row = r.nextInt(this.size);
this.col = r.nextInt(this.size);
if((this.row + 1) - word.length() >= 0 && (this.col + 1) - word.length() >= 0)
{
cont = 0; cont2 = 0;
int x = this.row, j = this.col;
while(x >= ((this.row + 1) - word.length()) && j >= ((this.col + 1) - word.length()))
{
if(this.matrix[x][j] == '0' || this.matrix[x][j] == word.charAt(this.cont2))
this.cont++;
this.cont2++;
x--; j--;
}
if(this.cont == word.length())
{
for(int i = 0; i < word.length(); i++)
{
this.matrix[this.row][this.col] = word.charAt(i);
this.row--; this.col--;
}
return false;
}
}
condicion = getOnMatrixAux(this.row, this.col);
}
return true;
}
public boolean diagonalRI(String word)
{
cleanMatrix(this.matrixAux);
int condicion = 0;
while (condicion != this.size*this.size)
{
this.row = r.nextInt(this.size);
this.col = r.nextInt(this.size);
if((this.row + word.length()) <= this.size && (this.col + word.length()) <= this.size)
{
this.cont = 0; this.cont2 = 0;
int x = this.row, j = this.col;
while(x < (this.row + word.length()) && j < (this.col + word.length()))
{
if(this.matrix[x][j] == '0' || this.matrix[x][j] == word.charAt(this.cont2))
this.cont++;
this.cont2++;
x++; j++;
}
if(this.cont == word.length())
{
for(int i = 0; i < word.length(); i++)
{
this.matrix[this.row][this.col] = word.charAt(i);
this.row++; this.col++;
}
return false;
}
}
condicion = getOnMatrixAux(this.row, this.col);
}
return true;
}
}