2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2020-01-15 12:07:09 +00:00
|
|
|
* @copyright 2020 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-27 13:33:30 +00:00
|
|
|
/**
|
2020-10-02 09:37:30 +00:00
|
|
|
* Converts from world X coordinates (pixels) to tile X coordinates (tile units), factoring in the
|
2017-11-27 13:33:30 +00:00
|
|
|
* layer's position, scale and scroll.
|
|
|
|
*
|
2018-02-08 01:08:59 +00:00
|
|
|
* @function Phaser.Tilemaps.Components.WorldToTileX
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-09-28 13:32:36 +00:00
|
|
|
* @param {number} worldX - The x coordinate to be converted, in pixels, not tiles.
|
|
|
|
* @param {boolean} [snapToFloor=true] - Whether or not to round the tile coordinate down to the nearest integer.
|
|
|
|
* @param {Phaser.Cameras.Scene2D.Camera} [camera=main camera] - The Camera to use when calculating the tile index from the world values.
|
2018-02-08 02:02:37 +00:00
|
|
|
* @param {Phaser.Tilemaps.LayerData} layer - The Tilemap Layer to act upon.
|
2020-09-02 10:54:24 +00:00
|
|
|
*
|
2018-02-07 23:27:01 +00:00
|
|
|
* @return {number} The X location in tile units.
|
2017-11-27 13:33:30 +00:00
|
|
|
*/
|
2020-10-02 09:37:30 +00:00
|
|
|
var WorldToTileX = function (worldX, snapToFloor, camera, layer)
|
2017-11-17 02:36:45 +00:00
|
|
|
{
|
2017-11-25 13:08:06 +00:00
|
|
|
if (snapToFloor === undefined) { snapToFloor = true; }
|
|
|
|
|
2017-12-01 19:25:48 +00:00
|
|
|
var tileWidth = layer.baseTileWidth;
|
2017-11-17 02:36:45 +00:00
|
|
|
var tilemapLayer = layer.tilemapLayer;
|
2017-11-25 23:12:24 +00:00
|
|
|
|
2017-11-17 02:36:45 +00:00
|
|
|
if (tilemapLayer)
|
|
|
|
{
|
|
|
|
if (camera === undefined) { camera = tilemapLayer.scene.cameras.main; }
|
|
|
|
|
|
|
|
// Find the world position relative to the static or dynamic layer's top left origin,
|
|
|
|
// factoring in the camera's horizontal scroll
|
2017-11-30 15:22:54 +00:00
|
|
|
worldX = worldX - (tilemapLayer.x + camera.scrollX * (1 - tilemapLayer.scrollFactorX));
|
2017-11-25 23:12:24 +00:00
|
|
|
|
|
|
|
tileWidth *= tilemapLayer.scaleX;
|
2017-11-17 02:36:45 +00:00
|
|
|
}
|
|
|
|
|
2017-11-25 13:08:06 +00:00
|
|
|
return snapToFloor
|
2017-11-25 23:12:24 +00:00
|
|
|
? Math.floor(worldX / tileWidth)
|
|
|
|
: worldX / tileWidth;
|
2017-11-17 02:36:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = WorldToTileX;
|