mirror of
https://git.leinelab.org/Mal/mr-crocs-adventures.git
synced 2025-09-11 02:57:36 +02:00
Tilorswift json loader implemented.
This commit is contained in:
64
tilorswift/js/Terrain.js
Normal file
64
tilorswift/js/Terrain.js
Normal file
@@ -0,0 +1,64 @@
|
||||
import Field from "./Field.js";
|
||||
import Tileset from "./Tileset.js";
|
||||
|
||||
export default class Terrain
|
||||
{
|
||||
constructor(tileset, tilesX, tilesY)
|
||||
{
|
||||
this.tileset = tileset;
|
||||
this.fields = [];
|
||||
this.tilesX = tilesX;
|
||||
this.tilesY = tilesY;
|
||||
this.htmlElement = document.createElement('table');
|
||||
this.htmlElement.id = 'level';
|
||||
|
||||
this.init();
|
||||
}
|
||||
|
||||
init()
|
||||
{
|
||||
for (let r = 0; r < this.tilesY; r++) {
|
||||
let row = [];
|
||||
let tr = document.createElement('tr');
|
||||
|
||||
for (let col = 0; col < this.tilesX; col++) {
|
||||
let field = new Field(this.tileset);
|
||||
let td = field.getElement();
|
||||
row.push(field);
|
||||
tr.appendChild(td);
|
||||
}
|
||||
|
||||
this.fields.push(row);
|
||||
this.htmlElement.appendChild(tr);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
getElement()
|
||||
{
|
||||
return this.htmlElement;
|
||||
}
|
||||
|
||||
setFieldIndex(x, y, index)
|
||||
{
|
||||
this.fields[y][x].setIndex(index);
|
||||
}
|
||||
|
||||
static createFromJson(json)
|
||||
{
|
||||
let terrainData = JSON.parse(json);
|
||||
let imageTileset = new Image();
|
||||
imageTileset.src = terrainData.tileset;
|
||||
|
||||
let tileset = new Tileset(imageTileset, terrainData.tiles, terrainData.scale);
|
||||
let terrain = new Terrain(tileset, terrainData.columns, terrainData.rows);
|
||||
|
||||
for (let y = 0; y < terrainData.matrix.length; y++) {
|
||||
for (let x = 0; x < terrainData.matrix[y].length; x++) {
|
||||
terrain.setFieldIndex(x, y, terrainData.matrix[y][x]);
|
||||
}
|
||||
}
|
||||
|
||||
return terrain;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user