2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2018 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
2017-11-16 19:09:07 +00:00
|
|
|
var IsInLayerBounds = require('./IsInLayerBounds');
|
|
|
|
|
2017-11-27 13:33:30 +00:00
|
|
|
/**
|
|
|
|
* Gets a tile at the given tile coordinates from the given layer.
|
|
|
|
*
|
2018-02-08 01:08:59 +00:00
|
|
|
* @function Phaser.Tilemaps.Components.GetTileAt
|
2018-04-16 14:25:22 +00:00
|
|
|
* @private
|
2018-02-08 01:08:59 +00:00
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2017-11-29 21:07:56 +00:00
|
|
|
* @param {integer} tileX - X position to get the tile from (given in tile units, not pixels).
|
|
|
|
* @param {integer} tileY - Y position to get the tile from (given in tile units, not pixels).
|
2018-09-28 13:32:36 +00:00
|
|
|
* @param {boolean} [nonNull=false] - If true getTile won't return null for empty tiles, but a Tile object with an index of -1.
|
2018-02-08 02:02:37 +00:00
|
|
|
* @param {Phaser.Tilemaps.LayerData} layer - The Tilemap Layer to act upon.
|
2018-02-08 01:08:59 +00:00
|
|
|
*
|
|
|
|
* @return {Phaser.Tilemaps.Tile} The tile at the given coordinates or null if no tile was found or the coordinates
|
2017-11-27 13:33:30 +00:00
|
|
|
* were invalid.
|
|
|
|
*/
|
2017-11-16 19:09:07 +00:00
|
|
|
var GetTileAt = function (tileX, tileY, nonNull, layer)
|
2017-11-15 19:50:56 +00:00
|
|
|
{
|
|
|
|
if (nonNull === undefined) { nonNull = false; }
|
|
|
|
|
2017-11-16 19:09:07 +00:00
|
|
|
if (IsInLayerBounds(tileX, tileY, layer))
|
2017-11-15 19:50:56 +00:00
|
|
|
{
|
2017-11-15 21:28:15 +00:00
|
|
|
var tile = layer.data[tileY][tileX];
|
2017-11-16 19:09:07 +00:00
|
|
|
if (tile === null)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
else if (tile.index === -1)
|
2017-11-15 19:50:56 +00:00
|
|
|
{
|
|
|
|
return nonNull ? tile : null;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return tile;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = GetTileAt;
|