2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2022-02-28 14:29:51 +00:00
|
|
|
* @copyright 2022 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
|
|
|
*/
|
|
|
|
|
2020-10-02 09:59:24 +00:00
|
|
|
var WorldToTileX = require('./WorldToTileX');
|
|
|
|
var WorldToTileY = require('./WorldToTileY');
|
2018-02-07 17:10:01 +00:00
|
|
|
var Vector2 = require('../../math/Vector2');
|
2017-11-17 02:36:45 +00:00
|
|
|
|
2017-11-27 13:33:30 +00:00
|
|
|
/**
|
2020-10-02 09:59:24 +00:00
|
|
|
* Converts from world XY coordinates (pixels) to tile XY coordinates (tile units), factoring in the
|
2017-11-27 13:33:30 +00:00
|
|
|
* layer's position, scale and scroll. This will return a new Vector2 object or update the given
|
|
|
|
* `point` object.
|
|
|
|
*
|
2020-10-02 09:59:24 +00:00
|
|
|
* @function Phaser.Tilemaps.Components.WorldToTileXY
|
2018-02-08 01:08:59 +00:00
|
|
|
* @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 {number} worldY - The y coordinate to be converted, in pixels, not tiles.
|
2020-11-23 10:48:24 +00:00
|
|
|
* @param {boolean} snapToFloor - Whether or not to round the tile coordinate down to the nearest integer.
|
|
|
|
* @param {Phaser.Math.Vector2} point - A Vector2 to store the coordinates in. If not given a new Vector2 is created.
|
|
|
|
* @param {Phaser.Cameras.Scene2D.Camera} 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-08 01:08:59 +00:00
|
|
|
* @return {Phaser.Math.Vector2} The XY location in tile units.
|
2017-11-27 13:33:30 +00:00
|
|
|
*/
|
2020-10-02 09:59:24 +00:00
|
|
|
var WorldToTileXY = function (worldX, worldY, snapToFloor, point, camera, layer)
|
2017-11-17 02:36:45 +00:00
|
|
|
{
|
2020-11-26 12:55:40 +00:00
|
|
|
if (snapToFloor === undefined) { snapToFloor = true; }
|
2020-11-23 10:48:24 +00:00
|
|
|
if (!point) { point = new Vector2(0, 0); }
|
2017-11-17 02:36:45 +00:00
|
|
|
|
2020-10-02 09:59:24 +00:00
|
|
|
point.x = WorldToTileX(worldX, snapToFloor, camera, layer);
|
|
|
|
point.y = WorldToTileY(worldY, snapToFloor, camera, layer);
|
2017-11-17 02:36:45 +00:00
|
|
|
|
|
|
|
return point;
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = WorldToTileXY;
|