phaser/src/tilemaps/components/GetTileAt.js

41 lines
1.1 KiB
JavaScript
Raw Normal View History

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.
*
* @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).
2017-11-27 13:33:30 +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.
* @param {LayerData} layer - [description]
* @return {Tile} The tile at the given coordinates or null if no tile was found or the coordinates
* were invalid.
*/
2017-11-16 19:09:07 +00:00
var GetTileAt = function (tileX, tileY, nonNull, layer)
{
if (nonNull === undefined) { nonNull = false; }
2017-11-16 19:09:07 +00:00
if (IsInLayerBounds(tileX, tileY, layer))
{
var tile = layer.data[tileY][tileX];
2017-11-16 19:09:07 +00:00
if (tile === null)
{
return null;
}
else if (tile.index === -1)
{
return nonNull ? tile : null;
}
else
{
return tile;
}
}
else
{
return null;
}
};
module.exports = GetTileAt;