Files
tetris.js/js/local-player.js
Marcel 06a2e582fd Major rework of basic game code - pre-work for multiplayer
Includes automatic generation of required HTML elements and better responsiveness
2019-07-18 11:49:06 +02:00

22 lines
535 B
JavaScript

class LocalPlayer extends Player {
constructor(gameInfo, game) {
super(gameInfo, game);
this.isHolding = false;
this.holdingTile = null;
}
hold() {
if (this.isHolding)
return;
if (this.holdingTile === null) {
this.holdingTile = this.matrix;
this.reset(true);
} else {
this.holdingTile = [this.matrix, this.matrix = this.holdingTile][0];
this.reset(true, false);
}
this.game.drawHolding();
}
}