2017-11-11 16:38:52 +00:00
|
|
|
var Class = require('../../utils/Class');
|
2017-11-17 19:16:39 +00:00
|
|
|
var MapData = require('./mapdata/MapData');
|
|
|
|
var LayerData = require('./mapdata/LayerData');
|
2017-11-11 16:38:52 +00:00
|
|
|
var StaticTilemapLayer = require('./staticlayer/StaticTilemapLayer.js');
|
|
|
|
var DynamicTilemapLayer = require('./dynamiclayer/DynamicTilemapLayer.js');
|
|
|
|
var Tileset = require('./Tileset');
|
|
|
|
var Formats = require('./Formats');
|
2017-11-15 19:50:56 +00:00
|
|
|
var TilemapComponents = require('./components');
|
2017-11-16 17:44:24 +00:00
|
|
|
var Tile = require('./Tile');
|
2017-11-11 16:38:52 +00:00
|
|
|
|
|
|
|
var Tilemap = new Class({
|
|
|
|
|
|
|
|
initialize:
|
|
|
|
|
2017-11-17 21:55:12 +00:00
|
|
|
function Tilemap (scene, mapData)
|
2017-11-11 16:38:52 +00:00
|
|
|
{
|
|
|
|
this.scene = scene;
|
|
|
|
|
|
|
|
this.tilesets = [];
|
|
|
|
this.tileWidth = mapData.tileWidth;
|
|
|
|
this.tileHeight = mapData.tileHeight;
|
|
|
|
|
|
|
|
this.width = mapData.width;
|
|
|
|
this.height = mapData.height;
|
|
|
|
this.orientation = mapData.orientation;
|
|
|
|
this.format = mapData.format;
|
|
|
|
this.version = mapData.version;
|
|
|
|
this.properties = mapData.properties;
|
|
|
|
this.widthInPixels = mapData.widthInPixels;
|
|
|
|
this.heightInPixels = mapData.heightInPixels;
|
2017-11-24 14:21:09 +00:00
|
|
|
this.imageCollections = mapData.imageCollections;
|
2017-11-11 16:38:52 +00:00
|
|
|
this.layers = mapData.layers;
|
|
|
|
this.tilesets = mapData.tilesets;
|
|
|
|
this.tiles = mapData.tiles;
|
|
|
|
this.objects = mapData.objects;
|
2017-11-15 21:05:11 +00:00
|
|
|
this.currentLayerIndex = 0;
|
2017-11-11 16:38:52 +00:00
|
|
|
|
|
|
|
// TODO: collision, collideIndexes, imagecollections, images
|
|
|
|
// TODO: debugging methods
|
|
|
|
},
|
|
|
|
|
|
|
|
addTilesetImage: function (tilesetName, key, tileWidth, tileHeight, tileMargin, tileSpacing, gid)
|
|
|
|
{
|
|
|
|
if (tilesetName === undefined) { return null; }
|
|
|
|
if (key === undefined || key === null) { key = tilesetName; }
|
|
|
|
if (tileWidth === undefined) { tileWidth = this.tileWidth; }
|
|
|
|
if (tileHeight === undefined) { tileHeight = this.tileHeight; }
|
|
|
|
|
|
|
|
if (!this.scene.sys.textures.exists(key))
|
|
|
|
{
|
|
|
|
console.warn('Invalid image key given for tileset: "' + key + '"');
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
var texture = this.scene.sys.textures.get(key);
|
|
|
|
|
|
|
|
// TODO: potentially add in v2 support for bitmap data
|
|
|
|
|
|
|
|
var index = this.getTilesetIndex(tilesetName);
|
|
|
|
|
2017-11-17 21:49:32 +00:00
|
|
|
if (index === null && this.format === Formats.TILEMAP_TILED_JSON)
|
2017-11-11 16:38:52 +00:00
|
|
|
{
|
|
|
|
console.warn('No data found in the JSON tilemap from Tiled matching the tileset name: "' + tilesetName + '"');
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.tilesets[index])
|
|
|
|
{
|
2017-11-18 21:40:27 +00:00
|
|
|
this.tilesets[index].setTileSize(tileWidth, tileHeight);
|
|
|
|
this.tilesets[index].setSpacing(tileMargin, tileSpacing);
|
2017-11-11 16:38:52 +00:00
|
|
|
this.tilesets[index].setImage(texture);
|
|
|
|
return this.tilesets[index];
|
|
|
|
}
|
|
|
|
|
2017-11-18 21:40:27 +00:00
|
|
|
if (tileMargin === undefined) { tileMargin = 0; }
|
|
|
|
if (tileSpacing === undefined) { tileSpacing = 0; }
|
|
|
|
if (gid === undefined) { gid = 0; }
|
2017-11-11 16:38:52 +00:00
|
|
|
|
2017-11-18 21:40:27 +00:00
|
|
|
var tileset = new Tileset(tilesetName, gid, tileWidth, tileHeight, tileMargin, tileSpacing, {});
|
|
|
|
tileset.setImage(texture);
|
|
|
|
this.tilesets.push(tileset);
|
2017-11-11 16:38:52 +00:00
|
|
|
return tileset;
|
2017-11-18 21:40:27 +00:00
|
|
|
|
|
|
|
// TODO: add in GID & master list of tiles
|
2017-11-11 16:38:52 +00:00
|
|
|
},
|
|
|
|
|
2017-11-16 17:44:24 +00:00
|
|
|
// Creates & selects
|
2017-11-17 01:08:58 +00:00
|
|
|
createBlankDynamicLayer: function (name, tileset, x, y, width, height, tileWidth, tileHeight)
|
|
|
|
{
|
2017-11-16 17:44:24 +00:00
|
|
|
if (tileWidth === undefined) { tileWidth = this.tileWidth; }
|
|
|
|
if (tileHeight === undefined) { tileHeight = this.tileHeight; }
|
|
|
|
if (width === undefined) { width = this.width; }
|
|
|
|
if (height === undefined) { height = this.height; }
|
|
|
|
if (x === undefined) { x = 0; }
|
|
|
|
if (y === undefined) { y = 0; }
|
|
|
|
|
|
|
|
var index = this.getLayerIndex(name);
|
|
|
|
|
|
|
|
if (index !== null)
|
|
|
|
{
|
|
|
|
console.warn('Cannot create blank layer: layer with matching name already exists ' + name);
|
2017-11-17 01:08:58 +00:00
|
|
|
return null;
|
2017-11-16 17:44:24 +00:00
|
|
|
}
|
|
|
|
|
2017-11-17 19:16:39 +00:00
|
|
|
var layerData = new LayerData({
|
|
|
|
name: name,
|
|
|
|
tileWidth: tileWidth,
|
|
|
|
tileHeight: tileHeight,
|
|
|
|
width: width,
|
|
|
|
height: height
|
|
|
|
});
|
2017-11-16 17:44:24 +00:00
|
|
|
|
|
|
|
var row;
|
|
|
|
for (var tileY = 0; tileY < height; tileY++)
|
|
|
|
{
|
|
|
|
row = [];
|
|
|
|
for (var tileX = 0; tileX < width; tileX++)
|
|
|
|
{
|
2017-11-17 19:16:39 +00:00
|
|
|
row.push(new Tile(layerData, -1, tileX, tileY, tileWidth, tileHeight));
|
2017-11-16 17:44:24 +00:00
|
|
|
}
|
2017-11-17 19:16:39 +00:00
|
|
|
layerData.data.push(row);
|
2017-11-16 17:44:24 +00:00
|
|
|
}
|
|
|
|
|
2017-11-17 19:16:39 +00:00
|
|
|
this.layers.push(layerData);
|
2017-11-16 17:44:24 +00:00
|
|
|
this.currentLayerIndex = this.layers.length - 1;
|
|
|
|
|
|
|
|
// TODO: decide about v2 trimming to game width/height
|
|
|
|
|
|
|
|
var dynamicLayer = new DynamicTilemapLayer(this.scene, this, this.currentLayerIndex, tileset, x, y);
|
|
|
|
this.scene.sys.displayList.add(dynamicLayer);
|
2017-11-17 21:55:12 +00:00
|
|
|
|
2017-11-16 17:44:24 +00:00
|
|
|
return dynamicLayer;
|
|
|
|
},
|
|
|
|
|
|
|
|
// Creates & selects
|
2017-11-11 16:38:52 +00:00
|
|
|
createStaticLayer: function (layerID, tileset, x, y)
|
|
|
|
{
|
2017-11-15 19:50:56 +00:00
|
|
|
var index = this.getLayerIndex(layerID);
|
2017-11-11 16:38:52 +00:00
|
|
|
|
2017-11-15 19:50:56 +00:00
|
|
|
if (index === null)
|
2017-11-11 16:38:52 +00:00
|
|
|
{
|
2017-11-17 01:55:17 +00:00
|
|
|
console.warn('Cannot create tilemap layer, invalid layer ID given: ' + layerID);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for an associated static or dynamic tilemap layer
|
|
|
|
if (this.layers[index].tilemapLayer)
|
|
|
|
{
|
|
|
|
console.warn('Cannot create static tilemap layer since a static or dynamic tilemap layer exists for layer ID:' + layerID);
|
2017-11-17 01:08:58 +00:00
|
|
|
return null;
|
2017-11-11 16:38:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: new feature, allow multiple CSV layers
|
|
|
|
// TODO: display dimension
|
|
|
|
|
2017-11-16 17:44:24 +00:00
|
|
|
this.currentLayerIndex = index;
|
|
|
|
|
2017-11-11 16:38:52 +00:00
|
|
|
var layer = new StaticTilemapLayer(this.scene, this, index, tileset, x, y);
|
|
|
|
this.scene.sys.displayList.add(layer);
|
|
|
|
return layer;
|
|
|
|
},
|
|
|
|
|
2017-11-16 17:44:24 +00:00
|
|
|
// Creates & selects
|
2017-11-11 16:38:52 +00:00
|
|
|
createDynamicLayer: function (layerID, tileset, x, y)
|
|
|
|
{
|
2017-11-15 19:50:56 +00:00
|
|
|
var index = this.getLayerIndex(layerID);
|
2017-11-11 16:38:52 +00:00
|
|
|
|
2017-11-15 19:50:56 +00:00
|
|
|
if (index === null)
|
2017-11-11 16:38:52 +00:00
|
|
|
{
|
2017-11-17 01:55:17 +00:00
|
|
|
console.warn('Cannot create tilemap layer, invalid layer ID given: ' + layerID);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for an associated static or dynamic tilemap layer
|
|
|
|
if (this.layers[index].tilemapLayer)
|
|
|
|
{
|
|
|
|
console.warn('Cannot create dynamic tilemap layer since a static or dynamic tilemap layer exists for layer ID:' + layerID);
|
2017-11-17 01:08:58 +00:00
|
|
|
return null;
|
2017-11-11 16:38:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: new feature, allow multiple CSV layers
|
|
|
|
// TODO: display dimension
|
|
|
|
|
2017-11-16 17:44:24 +00:00
|
|
|
this.currentLayerIndex = index;
|
|
|
|
|
2017-11-11 16:38:52 +00:00
|
|
|
var layer = new DynamicTilemapLayer(this.scene, this, index, tileset, x, y);
|
|
|
|
this.scene.sys.displayList.add(layer);
|
|
|
|
return layer;
|
2017-11-15 19:50:56 +00:00
|
|
|
},
|
|
|
|
|
2017-11-16 02:06:07 +00:00
|
|
|
copy: function (srcTileX, srcTileY, width, height, destTileX, destTileY, layer)
|
2017-11-15 22:36:41 +00:00
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
2017-11-17 01:58:35 +00:00
|
|
|
if (this._isStaticCall(layer, 'copy')) { return this; }
|
2017-11-16 02:06:07 +00:00
|
|
|
if (layer !== null)
|
|
|
|
{
|
|
|
|
TilemapComponents.Copy(srcTileX, srcTileY, width, height, destTileX, destTileY, layer);
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2017-11-17 01:09:28 +00:00
|
|
|
destroy: function ()
|
|
|
|
{
|
|
|
|
this.layers.length = 0;
|
|
|
|
this.tilesets.length = 0;
|
|
|
|
this.tiles.length = 0;
|
|
|
|
this.objects.length = 0;
|
|
|
|
this.scene = undefined;
|
|
|
|
},
|
|
|
|
|
2017-11-16 02:06:07 +00:00
|
|
|
fill: function (index, tileX, tileY, width, height, layer)
|
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
2017-11-17 01:58:35 +00:00
|
|
|
if (this._isStaticCall(layer, 'fill')) { return this; }
|
2017-11-16 02:06:07 +00:00
|
|
|
if (layer !== null)
|
|
|
|
{
|
|
|
|
TilemapComponents.Fill(index, tileX, tileY, width, height, layer);
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
},
|
2017-11-15 22:36:41 +00:00
|
|
|
|
2017-11-17 01:08:58 +00:00
|
|
|
findByIndex: function (findIndex, skip, reverse, layer)
|
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
|
|
|
if (layer === null) { return null; }
|
|
|
|
return TilemapComponents.FindByIndex(findIndex, skip, reverse, layer);
|
|
|
|
},
|
|
|
|
|
2017-11-16 02:06:07 +00:00
|
|
|
forEachTile: function (callback, context, tileX, tileY, width, height, layer)
|
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
|
|
|
if (layer !== null)
|
|
|
|
{
|
|
|
|
TilemapComponents.ForEachTile(callback, context, tileX, tileY, width, height, layer);
|
|
|
|
}
|
|
|
|
return this;
|
2017-11-15 22:36:41 +00:00
|
|
|
},
|
|
|
|
|
2017-11-15 20:55:26 +00:00
|
|
|
getIndex: function (location, name)
|
|
|
|
{
|
|
|
|
for (var i = 0; i < location.length; i++)
|
|
|
|
{
|
|
|
|
if (location[i].name === name)
|
|
|
|
{
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
|
|
|
|
getLayer: function (layer)
|
|
|
|
{
|
|
|
|
var index = this.getLayerIndex(layer);
|
|
|
|
return index !== null ? this.layers[index] : null;
|
|
|
|
},
|
|
|
|
|
|
|
|
getLayerIndex: function (layer)
|
|
|
|
{
|
|
|
|
if (layer === undefined)
|
|
|
|
{
|
2017-11-15 21:05:11 +00:00
|
|
|
return this.currentLayerIndex;
|
2017-11-15 20:55:26 +00:00
|
|
|
}
|
|
|
|
else if (typeof layer === 'string')
|
|
|
|
{
|
|
|
|
return this.getLayerIndexByName(layer);
|
|
|
|
}
|
|
|
|
else if (typeof layer === 'number' && layer < this.layers.length)
|
|
|
|
{
|
|
|
|
return layer;
|
|
|
|
}
|
|
|
|
else if (layer instanceof StaticTilemapLayer || layer instanceof DynamicTilemapLayer)
|
|
|
|
{
|
|
|
|
return layer.layerIndex;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
getLayerIndexByName: function (name)
|
|
|
|
{
|
|
|
|
return this.getIndex(this.layers, name);
|
|
|
|
},
|
|
|
|
|
2017-11-16 19:09:07 +00:00
|
|
|
getTileAt: function (tileX, tileY, nonNull, layer)
|
2017-11-15 19:50:56 +00:00
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
|
|
|
if (layer === null) { return null; }
|
2017-11-16 19:09:07 +00:00
|
|
|
return TilemapComponents.GetTileAt(tileX, tileY, nonNull, layer);
|
2017-11-15 20:55:26 +00:00
|
|
|
},
|
|
|
|
|
2017-11-17 13:58:33 +00:00
|
|
|
getTileAtWorldXY: function (worldX, worldY, nonNull, camera, layer)
|
2017-11-16 19:27:52 +00:00
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
|
|
|
if (layer === null) { return null; }
|
2017-11-17 13:58:33 +00:00
|
|
|
return TilemapComponents.GetTileAtWorldXY(worldX, worldY, nonNull, camera, layer);
|
2017-11-16 19:27:52 +00:00
|
|
|
},
|
|
|
|
|
2017-11-15 22:36:41 +00:00
|
|
|
getTilesWithin: function (tileX, tileY, width, height, layer)
|
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
|
|
|
if (layer === null) { return null; }
|
|
|
|
return TilemapComponents.GetTilesWithin(tileX, tileY, width, height, layer);
|
|
|
|
},
|
|
|
|
|
2017-11-15 20:55:26 +00:00
|
|
|
getTilesetIndex: function (name)
|
|
|
|
{
|
|
|
|
return this.getIndex(this.tilesets, name);
|
|
|
|
},
|
|
|
|
|
2017-11-15 21:28:15 +00:00
|
|
|
hasTileAt: function (tileX, tileY, layer)
|
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
|
|
|
if (layer === null) { return null; }
|
|
|
|
return TilemapComponents.HasTileAt(tileX, tileY, layer);
|
|
|
|
},
|
|
|
|
|
2017-11-17 13:58:33 +00:00
|
|
|
hasTileAtWorldXY: function (worldX, worldY, camera, layer)
|
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
|
|
|
if (layer === null) { return null; }
|
|
|
|
return TilemapComponents.HasTileAtWorldXY(worldX, worldY, camera, layer);
|
|
|
|
},
|
|
|
|
|
2017-11-15 20:55:26 +00:00
|
|
|
layer: {
|
|
|
|
get: function ()
|
|
|
|
{
|
2017-11-15 21:05:11 +00:00
|
|
|
return this.layers[this.currentLayerIndex];
|
2017-11-15 20:55:26 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
set: function (layer)
|
|
|
|
{
|
|
|
|
this.setLayer(layer);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-11-22 01:18:34 +00:00
|
|
|
putTileAt: function (tile, tileX, tileY, recalculateFaces, layer)
|
2017-11-16 19:09:07 +00:00
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
2017-11-18 21:41:26 +00:00
|
|
|
if (this._isStaticCall(layer, 'putTileAt')) { return null; }
|
2017-11-16 19:09:07 +00:00
|
|
|
if (layer === null) { return null; }
|
2017-11-22 01:18:34 +00:00
|
|
|
return TilemapComponents.PutTileAt(tile, tileX, tileY, recalculateFaces, layer);
|
2017-11-16 19:09:07 +00:00
|
|
|
},
|
|
|
|
|
2017-11-22 01:18:34 +00:00
|
|
|
putTileAtWorldXY: function (tile, worldX, worldY, recalculateFaces, camera, layer)
|
2017-11-17 13:58:33 +00:00
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
2017-11-18 21:41:26 +00:00
|
|
|
if (this._isStaticCall(layer, 'putTileAtWorldXY')) { return null; }
|
2017-11-17 13:58:33 +00:00
|
|
|
if (layer === null) { return null; }
|
2017-11-22 01:18:34 +00:00
|
|
|
return TilemapComponents.PutTileAtWorldXY(tile, worldX, worldY, recalculateFaces, camera, layer);
|
2017-11-17 13:58:33 +00:00
|
|
|
},
|
|
|
|
|
2017-11-16 02:06:07 +00:00
|
|
|
randomize: function (tileX, tileY, width, height, indices, layer)
|
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
2017-11-17 01:58:35 +00:00
|
|
|
if (this._isStaticCall(layer, 'randomize')) { return this; }
|
2017-11-16 02:06:07 +00:00
|
|
|
if (layer !== null)
|
|
|
|
{
|
2017-11-16 19:09:07 +00:00
|
|
|
TilemapComponents.Randomize(tileX, tileY, width, height, indices, layer);
|
2017-11-16 02:06:07 +00:00
|
|
|
}
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2017-11-22 01:18:34 +00:00
|
|
|
calculateFacesWithin: function (tileX, tileY, width, height, layer)
|
2017-11-21 02:06:49 +00:00
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
|
|
|
if (layer === null) { return this; }
|
2017-11-22 01:18:34 +00:00
|
|
|
TilemapComponents.CalculateFacesWithin(tileX, tileY, width, height, layer);
|
2017-11-21 02:06:49 +00:00
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2017-11-17 01:09:28 +00:00
|
|
|
removeAllLayers: function ()
|
|
|
|
{
|
|
|
|
this.layers.length = 0;
|
|
|
|
this.currentLayerIndex = 0;
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2017-11-22 01:18:34 +00:00
|
|
|
removeTileAt: function (tileX, tileY, replaceWithNull, recalculateFaces, layer)
|
2017-11-16 19:09:07 +00:00
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
2017-11-18 21:41:26 +00:00
|
|
|
if (this._isStaticCall(layer, 'removeTileAt')) { return null; }
|
2017-11-16 19:09:07 +00:00
|
|
|
if (layer === null) { return null; }
|
2017-11-22 01:18:34 +00:00
|
|
|
return TilemapComponents.RemoveTileAt(tileX, tileY, replaceWithNull, recalculateFaces, layer);
|
2017-11-16 19:09:07 +00:00
|
|
|
},
|
|
|
|
|
2017-11-22 01:18:34 +00:00
|
|
|
removeTileAtWorldXY: function (worldX, worldY, replaceWithNull, recalculateFaces, camera, layer)
|
2017-11-17 13:58:33 +00:00
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
2017-11-18 21:41:26 +00:00
|
|
|
if (this._isStaticCall(layer, 'removeTileAtWorldXY')) { return null; }
|
2017-11-17 13:58:33 +00:00
|
|
|
if (layer === null) { return null; }
|
2017-11-22 01:18:34 +00:00
|
|
|
return TilemapComponents.RemoveTileAtWorldXY(worldX, worldY, replaceWithNull, recalculateFaces, camera, layer);
|
2017-11-17 13:58:33 +00:00
|
|
|
},
|
|
|
|
|
2017-11-17 01:08:58 +00:00
|
|
|
replaceByIndex: function (findIndex, newIndex, tileX, tileY, width, height, layer)
|
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
2017-11-17 01:58:35 +00:00
|
|
|
if (this._isStaticCall(layer, 'replaceByIndex')) { return this; }
|
2017-11-17 01:08:58 +00:00
|
|
|
if (layer !== null)
|
|
|
|
{
|
|
|
|
TilemapComponents.ReplaceByIndex(findIndex, newIndex, tileX, tileY, width, height, layer);
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2017-11-21 02:06:49 +00:00
|
|
|
setCollision: function (indexes, collides, recalculateFaces, layer)
|
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
|
|
|
if (layer === null) { return this; }
|
|
|
|
TilemapComponents.SetCollision(indexes, collides, recalculateFaces, layer);
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
setCollisionBetween: function (start, stop, collides, recalculateFaces, layer)
|
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
|
|
|
if (layer === null) { return this; }
|
|
|
|
TilemapComponents.SetCollisionBetween(start, stop, collides, recalculateFaces, layer);
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
setCollisionByExclusion: function (indexes, collides, recalculateFaces, layer)
|
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
|
|
|
if (layer === null) { return this; }
|
|
|
|
TilemapComponents.SetCollisionByExclusion(indexes, collides, recalculateFaces, layer);
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2017-11-15 20:55:26 +00:00
|
|
|
setLayer: function (layer)
|
|
|
|
{
|
|
|
|
var index = this.getLayerIndex(layer);
|
|
|
|
if (index !== null)
|
|
|
|
{
|
2017-11-15 21:05:11 +00:00
|
|
|
this.currentLayerIndex = index;
|
2017-11-15 20:55:26 +00:00
|
|
|
}
|
|
|
|
return this;
|
2017-11-16 02:06:07 +00:00
|
|
|
},
|
|
|
|
|
2017-11-17 01:09:28 +00:00
|
|
|
setTileSize: function (tileWidth, tileHeight)
|
|
|
|
{
|
|
|
|
this.tileWidth = tileWidth;
|
|
|
|
this.tileHeight = tileHeight;
|
|
|
|
this.widthInPixels = this.width * tileWidth;
|
|
|
|
this.heightInPixels = this.height * tileHeight;
|
2017-11-18 21:40:27 +00:00
|
|
|
|
|
|
|
// Update all the layers & tiles
|
|
|
|
for (var i = 0; i < this.layers.length; i++)
|
|
|
|
{
|
|
|
|
this.layers[i].tileWidth = tileWidth;
|
|
|
|
this.layers[i].tileHeight = tileHeight;
|
|
|
|
|
|
|
|
var mapData = this.layers[i].data;
|
|
|
|
var mapWidth = this.layers[i].width;
|
|
|
|
var mapHeight = this.layers[i].height;
|
|
|
|
|
|
|
|
for (var row = 0; row < mapHeight; ++row)
|
|
|
|
{
|
|
|
|
for (var col = 0; col < mapWidth; ++col)
|
|
|
|
{
|
|
|
|
var tile = mapData[row][col];
|
|
|
|
if (tile !== null) { tile.setSize(tileWidth, tileHeight); }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
2017-11-17 01:09:28 +00:00
|
|
|
},
|
|
|
|
|
2017-11-16 02:06:07 +00:00
|
|
|
shuffle: function (tileX, tileY, width, height, layer)
|
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
2017-11-17 01:58:35 +00:00
|
|
|
if (this._isStaticCall(layer, 'shuffle')) { return this; }
|
2017-11-16 02:06:07 +00:00
|
|
|
if (layer !== null)
|
|
|
|
{
|
|
|
|
TilemapComponents.Shuffle(tileX, tileY, width, height, layer);
|
|
|
|
}
|
|
|
|
return this;
|
2017-11-17 01:08:58 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
swapByIndex: function (indexA, indexB, tileX, tileY, width, height, layer)
|
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
2017-11-17 01:58:35 +00:00
|
|
|
if (this._isStaticCall(layer, 'swapByIndex')) { return this; }
|
2017-11-17 01:08:58 +00:00
|
|
|
if (layer !== null)
|
|
|
|
{
|
|
|
|
TilemapComponents.SwapByIndex(indexA, indexB, tileX, tileY, width, height, layer);
|
|
|
|
}
|
|
|
|
return this;
|
2017-11-17 01:58:35 +00:00
|
|
|
},
|
|
|
|
|
2017-11-17 02:36:45 +00:00
|
|
|
worldToTileX: function (worldX, camera, layer)
|
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
|
|
|
if (layer === null) { return null; }
|
|
|
|
return TilemapComponents.WorldToTileX(worldX, camera, layer);
|
|
|
|
},
|
|
|
|
|
|
|
|
worldToTileY: function (worldY, camera, layer)
|
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
|
|
|
if (layer === null) { return null; }
|
|
|
|
return TilemapComponents.WorldToTileY(worldY, camera, layer);
|
|
|
|
},
|
|
|
|
|
|
|
|
worldToTileXY: function (worldX, worldY, point, camera, layer)
|
|
|
|
{
|
|
|
|
layer = this.getLayer(layer);
|
|
|
|
if (layer === null) { return null; }
|
|
|
|
return TilemapComponents.WorldToTileXY(worldX, worldY, point, camera, layer);
|
|
|
|
},
|
|
|
|
|
2017-11-17 01:58:35 +00:00
|
|
|
_isStaticCall: function (layer, functionName)
|
|
|
|
{
|
|
|
|
if (layer.tilemapLayer instanceof StaticTilemapLayer)
|
|
|
|
{
|
|
|
|
console.warn(functionName + ': You cannot change the tiles in a static tilemap layer');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2017-11-11 16:38:52 +00:00
|
|
|
}
|
2017-11-15 20:55:26 +00:00
|
|
|
|
2017-11-11 16:38:52 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = Tilemap;
|