-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
54 lines (45 loc) · 982 Bytes
/
main.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
var canvas = new Canvas("#myCanvas");
var timerSec;
var timerFrame;
window.addEventListener('keydown',this.playerMovement,false);
function playerMovement(e) {
if (e.keyCode == 37) {
PieceController.piece.movePiece([-1,0]);
}
if (e.keyCode == 38) {
PieceController.piece.verifyRotatePiece();
}
if (e.keyCode == 39) {
PieceController.piece.movePiece([1,0]);
}
if (e.keyCode == 40) {
PieceController.piece.movePiece([0,1]);
}
}
const _drawBlankScreen = () => {
for(let row = 0; row <= 19; row++) {
for(let col = 0; col <= 9; col++) {
canvas.drawSquare(col, row, '#FFFFFF', '#F4F4F4');
}
}
}
const draw = () => {
_drawBlankScreen();
SquareController.draw();
PieceController.draw();
}
const update = () => {
Game.verifyLine();
}
const secUpdate = () => {
PieceController.update();
}
const secFrame = () => {
update();
draw();
}
(() => {
Piece.createPiece();
timerSec = setInterval(secUpdate, 800);
timerFrame = setInterval(secFrame, 16);
})();