2017-06-09 04:00:12 +00:00
|
|
|
var Class = require('../../../utils/Class');
|
|
|
|
var GameObject = require('../../GameObject');
|
2017-07-04 00:59:31 +00:00
|
|
|
var Components = require('../../components');
|
2017-11-09 18:18:23 +00:00
|
|
|
var DynamicTilemapLayerRender = require('./DynamicTilemapLayerRender');
|
2017-11-15 21:28:15 +00:00
|
|
|
var TilemapComponents = require('../components');
|
2017-06-09 04:00:12 +00:00
|
|
|
|
2017-11-09 18:18:23 +00:00
|
|
|
var DynamicTilemapLayer = new Class({
|
2017-06-09 04:00:12 +00:00
|
|
|
|
|
|
|
Extends: GameObject,
|
|
|
|
|
|
|
|
Mixins: [
|
|
|
|
Components.Alpha,
|
|
|
|
Components.BlendMode,
|
|
|
|
Components.Flip,
|
|
|
|
Components.GetBounds,
|
|
|
|
Components.Origin,
|
|
|
|
Components.RenderTarget,
|
|
|
|
Components.ScaleMode,
|
|
|
|
Components.Size,
|
|
|
|
Components.Texture,
|
|
|
|
Components.Transform,
|
|
|
|
Components.Visible,
|
2017-06-22 02:19:03 +00:00
|
|
|
Components.ScrollFactor,
|
2017-11-09 18:18:23 +00:00
|
|
|
DynamicTilemapLayerRender
|
2017-06-09 04:00:12 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
initialize:
|
|
|
|
|
2017-11-11 16:38:52 +00:00
|
|
|
function DynamicTilemapLayer (scene, tilemap, layerIndex, tileset, x, y)
|
2017-06-09 04:00:12 +00:00
|
|
|
{
|
2017-11-09 18:18:23 +00:00
|
|
|
GameObject.call(this, scene, 'DynamicTilemapLayer');
|
2017-06-09 04:00:12 +00:00
|
|
|
|
2017-11-11 16:38:52 +00:00
|
|
|
this.map = tilemap;
|
|
|
|
this.layerIndex = layerIndex;
|
|
|
|
this.layer = tilemap.layers[layerIndex];
|
|
|
|
this.tileset = tileset;
|
2017-11-03 16:52:57 +00:00
|
|
|
|
2017-11-17 01:55:17 +00:00
|
|
|
// Link the layer data with this dynamic tilemap layer
|
|
|
|
this.layer.tilemapLayer = this;
|
|
|
|
|
2017-06-09 04:00:12 +00:00
|
|
|
this.culledTiles = [];
|
2017-11-03 16:52:57 +00:00
|
|
|
|
2017-11-11 16:38:52 +00:00
|
|
|
this.setTexture(tileset.image.key);
|
2017-06-09 04:00:12 +00:00
|
|
|
this.setPosition(x, y);
|
|
|
|
this.setSizeToFrame();
|
|
|
|
this.setOrigin();
|
2017-11-11 16:38:52 +00:00
|
|
|
this.setSize(this.map.tileWidth * this.layer.width, this.map.tileheight * this.layer.height);
|
2017-11-03 16:52:57 +00:00
|
|
|
|
|
|
|
this.skipIndexZero = false;
|
2017-06-09 04:00:12 +00:00
|
|
|
},
|
|
|
|
|
2017-06-26 12:16:27 +00:00
|
|
|
getTotalTileCount: function ()
|
2017-06-22 02:19:03 +00:00
|
|
|
{
|
|
|
|
return this.tileArray.length;
|
|
|
|
},
|
|
|
|
|
|
|
|
getVisibleTileCount: function (camera)
|
|
|
|
{
|
|
|
|
return this.cull(camera).length;
|
|
|
|
},
|
|
|
|
|
2017-11-14 21:35:18 +00:00
|
|
|
cull: function (camera)
|
2017-06-09 04:00:12 +00:00
|
|
|
{
|
2017-11-11 16:38:52 +00:00
|
|
|
var mapData = this.layer.data;
|
|
|
|
var mapWidth = this.layer.width;
|
|
|
|
var mapHeight = this.layer.height;
|
2017-06-22 02:19:03 +00:00
|
|
|
var culledTiles = this.culledTiles;
|
|
|
|
var scrollX = camera.scrollX * this.scrollFactorX;
|
|
|
|
var scrollY = camera.scrollY * this.scrollFactorY;
|
|
|
|
var cameraW = camera.width;
|
|
|
|
var cameraH = camera.height;
|
|
|
|
|
|
|
|
culledTiles.length = 0;
|
2017-06-26 12:16:27 +00:00
|
|
|
|
2017-11-14 21:35:18 +00:00
|
|
|
for (var row = 0; row < mapHeight; ++row)
|
2017-06-22 02:19:03 +00:00
|
|
|
{
|
2017-11-14 21:35:18 +00:00
|
|
|
for (var col = 0; col < mapWidth; ++col)
|
2017-06-22 02:19:03 +00:00
|
|
|
{
|
2017-11-14 21:35:18 +00:00
|
|
|
var tile = mapData[row][col];
|
|
|
|
|
|
|
|
if (tile === null || (tile.index <= 0 && this.skipIndexZero)) { continue; }
|
|
|
|
|
|
|
|
var tileX = tile.worldX - scrollX;
|
|
|
|
var tileY = tile.worldY - scrollY;
|
|
|
|
var tileW = tile.width;
|
|
|
|
var tileH = tile.height;
|
|
|
|
var cullW = cameraW + tileW;
|
|
|
|
var cullH = cameraH + tileH;
|
|
|
|
|
|
|
|
if (tile.visible &&
|
|
|
|
tileX > -tileW && tileY > -tileH &&
|
|
|
|
tileX < cullW && tileY < cullH)
|
|
|
|
{
|
|
|
|
culledTiles.push(tile);
|
|
|
|
}
|
2017-06-22 02:19:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return culledTiles;
|
2017-11-15 19:50:56 +00:00
|
|
|
},
|
|
|
|
|
2017-11-16 02:16:43 +00:00
|
|
|
copy: function (srcTileX, srcTileY, width, height, destTileX, destTileY)
|
|
|
|
{
|
|
|
|
TilemapComponents.Copy(srcTileX, srcTileY, width, height, destTileX, destTileY, this.layer);
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2017-11-17 01:55:17 +00:00
|
|
|
destroy: function ()
|
|
|
|
{
|
|
|
|
this.layer.tilemapLayer = undefined;
|
|
|
|
this.map = undefined;
|
|
|
|
this.layer = undefined;
|
|
|
|
this.tileset = undefined;
|
|
|
|
this.culledTiles.length = 0;
|
|
|
|
GameObject.prototype.destroy.call(this);
|
|
|
|
},
|
|
|
|
|
2017-11-16 02:16:43 +00:00
|
|
|
fill: function (index, tileX, tileY, width, height)
|
|
|
|
{
|
|
|
|
TilemapComponents.Fill(index, tileX, tileY, width, height, this.layer);
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2017-11-17 01:08:58 +00:00
|
|
|
findByIndex: function (findIndex, skip, reverse)
|
|
|
|
{
|
|
|
|
return TilemapComponents.FindByIndex(findIndex, skip, reverse, this.layer);
|
|
|
|
},
|
|
|
|
|
2017-11-15 22:36:41 +00:00
|
|
|
forEachTile: function (callback, context, tileX, tileY, width, height)
|
|
|
|
{
|
2017-11-16 02:16:43 +00:00
|
|
|
TilemapComponents.ForEachTile(callback, context, tileX, tileY, width, height, this.layer);
|
|
|
|
return this;
|
2017-11-15 22:36:41 +00:00
|
|
|
},
|
|
|
|
|
2017-11-15 21:28:15 +00:00
|
|
|
getTileAt: function (tileX, tileY, nonNull)
|
2017-11-15 19:50:56 +00:00
|
|
|
{
|
2017-11-16 19:09:07 +00:00
|
|
|
return TilemapComponents.GetTileAt(tileX, tileY, nonNull, this.layer);
|
2017-11-15 21:28:15 +00:00
|
|
|
},
|
|
|
|
|
2017-11-16 19:27:52 +00:00
|
|
|
getTileAtWorldXY: function (worldX, worldY, nonNull)
|
|
|
|
{
|
|
|
|
return TilemapComponents.GetTileAtWorldXY(worldX, worldY, nonNull, this.layer);
|
|
|
|
},
|
|
|
|
|
2017-11-15 22:36:41 +00:00
|
|
|
getTilesWithin: function (tileX, tileY, width, height)
|
|
|
|
{
|
|
|
|
return TilemapComponents.GetTilesWithin(tileX, tileY, width, height, this.layer);
|
|
|
|
},
|
|
|
|
|
2017-11-15 21:28:15 +00:00
|
|
|
hasTileAt: function (tileX, tileY)
|
|
|
|
{
|
|
|
|
return TilemapComponents.HasTileAt(tileX, tileY, this.layer);
|
2017-11-16 02:16:43 +00:00
|
|
|
},
|
|
|
|
|
2017-11-16 19:09:07 +00:00
|
|
|
putTile: function (tile, tileX, tileY)
|
|
|
|
{
|
|
|
|
return TilemapComponents.PutTile(tile, tileX, tileY, this.layer);
|
|
|
|
},
|
|
|
|
|
2017-11-16 02:16:43 +00:00
|
|
|
randomize: function (tileX, tileY, width, height, indices)
|
|
|
|
{
|
|
|
|
TilemapComponents.Randomize(tileX, tileY, width, height, indices, this.layer);
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2017-11-16 19:09:07 +00:00
|
|
|
removeTile: function (tileX, tileY, replaceWithNull)
|
|
|
|
{
|
|
|
|
return TilemapComponents.RemoveTile(tileX, tileY, replaceWithNull, this.layer);
|
|
|
|
},
|
|
|
|
|
2017-11-17 01:08:58 +00:00
|
|
|
replaceByIndex: function (findIndex, newIndex, tileX, tileY, width, height)
|
|
|
|
{
|
|
|
|
TilemapComponents.ReplaceByIndex(findIndex, newIndex, tileX, tileY, width, height, this.layer);
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2017-11-16 02:16:43 +00:00
|
|
|
shuffle: function (tileX, tileY, width, height)
|
|
|
|
{
|
|
|
|
TilemapComponents.Shuffle(tileX, tileY, width, height, this.layer);
|
|
|
|
return this;
|
2017-11-17 01:08:58 +00:00
|
|
|
},
|
2017-06-22 02:19:03 +00:00
|
|
|
|
2017-11-17 01:08:58 +00:00
|
|
|
swapByIndex: function (indexA, indexB, tileX, tileY, width, height)
|
|
|
|
{
|
|
|
|
TilemapComponents.SwapByIndex(indexA, indexB, tileX, tileY, width, height, this.layer);
|
|
|
|
return this;
|
|
|
|
}
|
2017-06-09 04:00:12 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2017-11-09 18:18:23 +00:00
|
|
|
module.exports = DynamicTilemapLayer;
|