-
Notifications
You must be signed in to change notification settings - Fork 0
/
tetris_attack.js
497 lines (453 loc) · 11.9 KB
/
tetris_attack.js
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
const CIMA = [0,-1];
const BAIXO = [0,1];
const ESQUERDA = [-1,0];
const DIREITA = [1,0];
const PARADO = [0,0];
const TAMANHO_MIN_COMBINACAO = 3;
const LINHA_INICIAL_BLOCOS = 5;
const TEMPO_NOVALINHA_INICIAL = 7000;
const REDUCAO_TEMPO = 500;
const NUM_PECAS = 6;
const BLOCO_AZULCLARO = 0;
const BLOCO_AMARELO = 1;
const BLOCO_AZUL = 2;
const BLOCO_ROXO = 3;
const BLOCO_VERDE = 4;
const BLOCO_VERMELHO = 5;
const BLOCO_VAZIO = 6;
const CLASS_BLOCO_AZULCLARO = "yellow-block";
const CLASS_BLOCO_AMARELO = "red-block";
const CLASS_BLOCO_AZUL = "green-block";
const CLASS_BLOCO_ROXO = "purple-block";
const CLASS_BLOCO_VERDE = "aliceblue-block";
const CLASS_BLOCO_VERMELHO = "blue-block";
const CLASS_BLOCO_VAZIO = "bloco-vazio";
const CURSOR_CLASS = "selecionado";
let renderDiv;
let tabuleiro =
{
fimDeJogo: false,
combo: 0,
pontos: 0,
tempoInsercao: 7000,
adicionarNovaLinha: false,
dimensoes:
{
x: 6,
y: 12
},
cursor:
{
x: 2,
y: 5,
proxDirecao: PARADO,
trocarBloco: false,
},
matriz: []
};
window.onkeydown = input;
window.onload = iniciar;
function input(e)
{
if(!e)
e = window.event;
let code;
if(e.charCode && e.keyCode ==0)
code = e.charCode;
else
code = e.keyCode;
tabuleiro.cursor.proxDirecao = PARADO;
if(tabuleiro.fimDeJogo)
return;
switch(code)
{
case 40://baixo
tabuleiro.cursor.proxDirecao = BAIXO;
break;
case 39://direita
tabuleiro.cursor.proxDirecao = DIREITA;
break;
case 38://cima
tabuleiro.cursor.proxDirecao = CIMA;
break;
case 37://esquerda
tabuleiro.cursor.proxDirecao = ESQUERDA;
break;
case 32://espaço
tabuleiro.cursor.trocarBloco = true;
break;
}
if(tabuleiro.cursor.proxDirecao !== PARADO)
tabuleiro.cursor = movimentar(tabuleiro.cursor, tabuleiro.dimensoes);
if(tabuleiro.cursor.trocarBloco)
{
tabuleiro.cursor.trocarBloco = false;
if(switchBloco(tabuleiro))
{
tabuleiro.combo = 0;
let mudouAlgo = true;
while(mudouAlgo)
{
mudouAlgo = false;
let blocosParaRemover = checkCombinacoes(tabuleiro);
let removeuBlocos = removerBlocos(tabuleiro, blocosParaRemover);
let gravidadeAfetou = gravidade(tabuleiro);
mudouAlgo = removeuBlocos || gravidadeAfetou;
if(removeuBlocos)
tabuleiro.combo++;
}
}
}
if(tabuleiro.adicionarNovaLinha)
{
tabuleiro.fimDeJogo = adicionaLinha(tabuleiro);
tabuleiro.adicionarNovaLinha = false;
}
renderizar(renderDiv, tabuleiro);
}
let intervaloInserirLinhas = setInterval(ligarAdicionarLinha, tabuleiro.tempoInsercao);
function ligarAdicionarLinha()
{
tabuleiro.adicionarNovaLinha = true;
if(tabuleiro.tempoInsercao > 500)
tabuleiro.tempoInsercao -= 500;
clearInterval(intervaloInserirLinhas);
intervaloInserirLinhas = setInterval(ligarAdicionarLinha, tabuleiro.tempoInsercao);
}
function iniciar()
{
tabuleiro.matriz = [];
for(let i=0; i < tabuleiro.dimensoes.x; i++)
{
tabuleiro.matriz.push([]);
for(let j=0; j < tabuleiro.dimensoes.y; j++)
{
if(j < LINHA_INICIAL_BLOCOS)
tabuleiro.matriz[i].push(randomTile(NUM_PECAS));
else
tabuleiro.matriz[i].push(BLOCO_VAZIO);
}
}
let blocosParaRemover = checkCombinacoes(tabuleiro);
removerBlocos(tabuleiro, blocosParaRemover);
gravidade(tabuleiro);
iniciar_renderer(tabuleiro);
}
function iniciar_renderer(tabuleiro)
{
renderDiv = document.getElementById("jogo");
for(let i=0; i < tabuleiro.dimensoes.x; i++)
{
let linha = document.createElement("div");
linha.classList.add("linha");
renderDiv.appendChild(linha);
for(let j=0; j < tabuleiro.dimensoes.y; j++)
{
let bloco = document.createElement("div");
bloco.classList.add(CLASS_BLOCO_VAZIO);
renderDiv.children[i].appendChild(bloco);
}
}
}
function renderizar(renderDiv, tabuleiro)
{
for(let i=0; i < tabuleiro.dimensoes.x; i++)
{
for(let j=0; j < tabuleiro.dimensoes.y; j++)
{
let bloco = getBloco(renderDiv, i, j);
let blocoMatriz = tabuleiro.matriz[i][j];
if(blocoMatriz !== getTipoBloco(bloco))
{
trocaTipoBloco(bloco, blocoMatriz);
}
}
}
let ultimasPosCursor = renderDiv.getElementsByClassName(CURSOR_CLASS);
while(ultimasPosCursor.length > 0)
ultimasPosCursor[0].classList.remove(CURSOR_CLASS);
let cursor1 = getBloco(renderDiv, tabuleiro.cursor.x, tabuleiro.cursor.y);
let cursor2 = getBloco(renderDiv, tabuleiro.cursor.x + 1, tabuleiro.cursor.y);
cursor1.classList.add(CURSOR_CLASS);
cursor2.classList.add(CURSOR_CLASS);
checkFimDeJogo(renderDiv, tabuleiro);
}
function getBloco(jogo,x,y)
{
return jogo.children[x].children[y];
}
function getTipoBloco(bloco)
{
let tipo = CLASS_BLOCO_VAZIO;
if(bloco.classList.contains(CLASS_BLOCO_AZULCLARO))
tipo = CLASS_BLOCO_AZULCLARO;
else if(bloco.classList.contains(CLASS_BLOCO_AZUL))
tipo = CLASS_BLOCO_AZUL;
else if(bloco.classList.contains(CLASS_BLOCO_VERMELHO))
tipo = CLASS_BLOCO_VERMELHO;
else if(bloco.classList.contains(CLASS_BLOCO_VERDE))
tipo = CLASS_BLOCO_VERDE;
else if(bloco.classList.contains(CLASS_BLOCO_AMARELO))
tipo = CLASS_BLOCO_AMARELO;
else if(bloco.classList.contains(CLASS_BLOCO_ROXO))
tipo = CLASS_BLOCO_ROXO;
else if(bloco.classList.contains(CLASS_BLOCO_VAZIO))
tipo = CLASS_BLOCO_VAZIO;
return tipo;
}
function trocaTipoBloco(bloco,novoTipo)
{
let tipo = getTipoBloco(bloco);
return bloco.classList.replace(tipo,numToTipoBloco(novoTipo));
}
function numToTipoBloco(num){
switch(num)
{
case 0:
return "yellow-block";
case 1:
return "red-block";
case 2:
return "green-block";
case 3:
return "purple-block";
case 4:
return "aliceblue-block";
case 5:
return "blue-block";
case 6:
default:
return "bloco-vazio";
}
}
function randomTile(max)
{
return Math.floor(Math.random() * max);
}
function randomTileEspecifico(excluidos)
{
let blocos = [0,1,2,3,4,5];
let achou = true;
let random;
for(let i=0; i<excluidos.length; i++)
{
let index = blocos.indexOf(excluidos[i]);
blocos.splice(index, 1);
}
achou = false;
random = Math.floor(Math.random() * blocos.length);
return blocos[random];
}
function checarLimites(x, y, lim)
{
if(x < 0
|| x > lim.x - 2
|| y < 0
|| y > lim.y - 1)
return false;
else
return true;
}
function movimentar(cursor, lim)
{
if(!checarLimites(cursor.x + cursor.proxDirecao[0] , cursor.y + cursor.proxDirecao[1], lim))
return;
else
{
cursor.x += cursor.proxDirecao[0];
cursor.y += cursor.proxDirecao[1];
}
return cursor;
}
function switchBloco(tabuleiro)
{
let cursor = tabuleiro.cursor;
let bloco_a = tabuleiro.matriz[cursor.x][cursor.y];
let bloco_b = tabuleiro.matriz[cursor.x + 1][cursor.y];
if(bloco_a === BLOCO_VAZIO && bloco_b === BLOCO_VAZIO)
return false
else
{
tabuleiro.matriz[cursor.x][cursor.y] = bloco_b;
tabuleiro.matriz[cursor.x + 1][cursor.y] = bloco_a;
return true;
}
}
function checkFimDeJogo(renderDiv, tabuleiro)
{
if(tabuleiro.fimDeJogo)
{
document.getElementsByClassName("gameover")[0].classList.remove("hidden");
document.getElementsByClassName("gameover2")[0].classList.remove("hidden");
return;
}
}
function marcarBlocosParaRemover(tabuleiro, blocosIguais,blocosParaRemover)
{
if(blocosIguais.length >= TAMANHO_MIN_COMBINACAO)
{
pontuar(tabuleiro, blocosIguais);
return blocosParaRemover.concat(blocosIguais);
}
return [];
}
function checkCombinacoes(tabuleiro)
{
let blocosIguais = [];
let dimensoes = tabuleiro.dimensoes;
let blocosParaRemover = [];
//primeiro checamos na horizontal
for(let j=0; j < dimensoes.y; j++)
{
for(let i=0; i < dimensoes.x; i++)
{
let bloco = tabuleiro.matriz[i][j];
if(bloco === BLOCO_VAZIO)
continue;
else
{
if(blocosIguais.length == 0)
blocosIguais.push([i,j]);
else
{
let comparar = tabuleiro.matriz[blocosIguais[0][0]][blocosIguais[0][1]];
if(comparar === bloco)
blocosIguais.push([i,j]);
else
{
blocosParaRemover = marcarBlocosParaRemover(tabuleiro,blocosIguais,blocosParaRemover);
blocosIguais = [];
blocosIguais.push([i,j]);
}
}
}
}
blocosParaRemover = marcarBlocosParaRemover(tabuleiro,blocosIguais,blocosParaRemover);
blocosIguais = [];
}
//depois na vertical
for(let i=0; i < dimensoes.x; i++)
{
for(let j=0; j < dimensoes.y; j++)
{
let bloco = tabuleiro.matriz[i][j];
if(bloco === BLOCO_VAZIO)
continue;
else
{
if(blocosIguais.length == 0)
blocosIguais.push([i,j]);
else
{
let comparar = tabuleiro.matriz[blocosIguais[0][0]][blocosIguais[0][1]];
if(comparar === bloco)
blocosIguais.push([i,j]);
else
{
blocosParaRemover = marcarBlocosParaRemover(tabuleiro,blocosIguais,blocosParaRemover);
blocosIguais = [];
blocosIguais.push([i,j]);
}
}
}
}
blocosParaRemover = marcarBlocosParaRemover(tabuleiro,blocosIguais,blocosParaRemover);
blocosIguais = [];
}
return blocosParaRemover;
}
function removerBlocos(tabuleiro, blocosParaRemover)
{
let removeu = blocosParaRemover.length > 0;
for(let i=0; i < blocosParaRemover.length; i++)
{
let x = blocosParaRemover[i][0];
let y = blocosParaRemover[i][1];
tabuleiro.matriz[x][y] = BLOCO_VAZIO;
}
blocosParaRemover = [];
return removeu;
}
function pontuar(listaBlocosIguais, tabuleiro)
{
tabuleiro.pontos += 10 *listaBlocosIguais.length;
}
function gravidade(tabuleiro)
{
let gravidadeAfetou = false;
for (let i=0; i < tabuleiro.dimensoes.x; i++)
{
//preparando uma coluna da matriz sem os espaços vazios
let coluna = [];
for (let j=0; j < tabuleiro.dimensoes.y; j++)
{
let bloco = tabuleiro.matriz[i][j];
if(bloco !== BLOCO_VAZIO)
coluna.push(bloco);
}
//sobrepondo a coluna atual com a coluna sem espaços em vazios
for (let j=0; j < tabuleiro.dimensoes.y; j++)
{
let bloco = tabuleiro.matriz[i][j];
//se estiver na altura da coluna sem espaços...
if(j >= tabuleiro.dimensoes.y - coluna.length)
{
let bloco2 = coluna[j - (tabuleiro.dimensoes.y - coluna.length)];
//se o bloco atual for diferente do da coluna sem espaços
if(bloco !== bloco2)
{
//trocamos o bloco e falamos que algum bloco foi afetado pela gravidade
tabuleiro.matriz[i][j] = bloco2;
if(!gravidadeAfetou)
gravidadeAfetou = true;
}
}
else if(bloco !== BLOCO_VAZIO) //caso contrário só trocamos se não for vazio
{
//e trocamos para vazio, pq a coluna de blocos não vazios é menor do que isso
//ou seja, só deveria ter bloco vazio aqui
tabuleiro.matriz[i][j] = BLOCO_VAZIO;
}
}
}
return gravidadeAfetou;
}
function adicionaLinha(tabuleiro)
{
for(let i=0; i < tabuleiro.dimensoes.x; i++)
{
let bloco = tabuleiro.matriz[i][0];
if(bloco !== BLOCO_VAZIO)
return true;//fim de jogo
}
let excluidos = [];
let novaLinha = [];
for(let i=0; i < tabuleiro.dimensoes.x; i++)
{
let bloco_a = tabuleiro.matriz[i][tabuleiro.dimensoes.y - 2];
let bloco_b = tabuleiro.matriz[i][tabuleiro.dimensoes.y - 1];
if(bloco_a === bloco_b)
excluidos.push(bloco_a);
if(novaLinha.length > 1)
excluidos.push(novaLinha[i - 1]);
novaLinha.push(randomTileEspecifico(excluidos));
excluidos = [];
}
for (let i=0; i < tabuleiro.dimensoes.x; i++)
{
let coluna = [];
for (let j=0; j < tabuleiro.dimensoes.y; j++)
{
coluna.push(tabuleiro.matriz[i][j]);
}
coluna.shift();
coluna.push(novaLinha[i]);
for (let j=0; j < tabuleiro.dimensoes.y; j++)
{
let bloco = tabuleiro.matriz[i][j];
if(bloco !== coluna[j])
tabuleiro.matriz[i][j] = coluna[j];
}
}
return false;
}