js-browser-tile-game/js/tileset.js
Aaron Yarborough 4b4e124c57 Initial commit
2019-12-02 10:05:48 +00:00

30 lines
No EOL
880 B
JavaScript

function Tileset() {
this.image = new Image();
this.image.parent = this;
this.loaded = false;
}
Tileset.prototype.setTileset = function(tileset) {
this.tileset = tileset;
this.loaded = false;
this.image.src = "assets/tilesets/" + tileset;
this.image.addEventListener("load", function() {
this.parent.loaded = true;
}, false);
}
Tileset.prototype.getTileset = function() {
return this.tileset;
}
Tileset.prototype.tileIDToTilesetPos = function(tileID) {
var px = tileID % Math.floor(this.image.width / tileEngine.tileSize) * tileEngine.tileSize;
var py = Math.floor(tileID / Math.floor(this.image.width / tileEngine.tileSize)) * tileEngine.tileSize;
return [px, py];
}
Tileset.prototype.tilesetPosToTileID = function(x, y) {
return (Math.floor(x / tileEngine.tileSize)) + (Math.floor(y / tileEngine.tileSize) * (this.image.width / tileEngine.tileSize));
}