phaser/src/tilemaps/components/GetTileAt.js

50 lines
1.4 KiB
JavaScript
Raw Normal View History

2018-02-12 16:01:20 +00:00
/**
* @author Richard Davey <rich@photonstorm.com>
2023-01-02 17:36:27 +00:00
* @copyright 2013-2023 Photon Storm Ltd.
2019-05-10 15:15:04 +00:00
* @license {@link https://opensource.org/licenses/MIT|MIT License}
2018-02-12 16:01:20 +00:00
*/
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
* @since 3.0.0
*
2020-11-23 10:22:13 +00:00
* @param {number} tileX - X position to get the tile from (given in tile units, not pixels).
* @param {number} tileY - Y position to get the tile from (given in tile units, not pixels).
2020-11-23 10:48:24 +00:00
* @param {boolean} nonNull - 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.
*
2020-10-15 10:09:37 +00:00
* @return {Phaser.Tilemaps.Tile} The tile at the given coordinates or null if no tile was found or the coordinates were invalid.
2017-11-27 13:33:30 +00:00
*/
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] || null;
2020-10-15 10:09:37 +00:00
if (!tile)
2017-11-16 19:09:07 +00:00
{
return null;
}
else if (tile.index === -1)
{
return nonNull ? tile : null;
}
else
{
return tile;
}
}
else
{
return null;
}
};
module.exports = GetTileAt;