1
0
mirror of https://github.com/danog/2048.git synced 2024-12-14 02:07:39 +01:00
2048/js/html_actuator.js

62 lines
1.7 KiB
JavaScript
Raw Normal View History

function HTMLActuator() {
this.tileContainer = document.getElementsByClassName("tile-container")[0];
}
2014-03-08 13:10:54 +01:00
HTMLActuator.prototype.actuate = function (grid) {
var self = this;
2014-03-09 14:32:30 +01:00
window.requestAnimationFrame(function () {
self.clearContainer();
grid.cells.forEach(function (column) {
column.forEach(function (cell) {
if (cell) {
self.addTile(cell);
}
});
});
});
};
HTMLActuator.prototype.clearContainer = function () {
while (this.tileContainer.firstChild) {
this.tileContainer.removeChild(this.tileContainer.firstChild);
}
};
HTMLActuator.prototype.addTile = function (tile) {
2014-03-09 14:32:30 +01:00
var self = this;
2014-03-09 14:32:30 +01:00
var element = document.createElement("div");
var position = tile.previousPosition || { x: tile.x, y: tile.y };
positionClass = this.positionClass(position);
2014-03-09 14:32:30 +01:00
element.classList.add("tile", "tile-" + tile.value, positionClass);
element.textContent = tile.value;
this.tileContainer.appendChild(element);
2014-03-09 14:32:30 +01:00
if (tile.previousPosition) {
window.requestAnimationFrame(function () {
element.classList.remove(element.classList[2]);
element.classList.add(self.positionClass({ x: tile.x, y: tile.y }));
});
2014-03-09 20:03:04 +01:00
} else if (tile.mergedFrom) {
element.classList.add("tile-merged");
tile.mergedFrom.forEach(function (merged) {
self.addTile(merged);
});
2014-03-09 14:32:30 +01:00
} else {
element.classList.add("tile-new");
}
};
HTMLActuator.prototype.normalizePosition = function (position) {
return { x: position.x + 1, y: position.y + 1 };
};
HTMLActuator.prototype.positionClass = function (position) {
position = this.normalizePosition(position);
return "tile-position-" + position.x + "-" + position.y;
};