phaser/src/physics/arcade/tilemap/TileCheckX.js

71 lines
1.9 KiB
JavaScript
Raw Normal View History

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}
*/
var ProcessTileSeparationX = require('./ProcessTileSeparationX');
/**
2018-02-09 03:44:23 +00:00
* Check the body against the given tile on the X axis.
2018-10-19 16:45:05 +00:00
* Used internally by the SeparateTile function.
2018-02-09 03:44:23 +00:00
*
* @function Phaser.Physics.Arcade.Tilemap.TileCheckX
* @since 3.0.0
*
* @param {Phaser.Physics.Arcade.Body} body - The Body object to separate.
* @param {Phaser.Tilemaps.Tile} tile - The tile to check.
2018-10-19 16:45:05 +00:00
* @param {number} tileLeft - The left position of the tile within the tile world.
* @param {number} tileRight - The right position of the tile within the tile world.
* @param {number} tileBias - The tile bias value. Populated by the `World.TILE_BIAS` constant.
2018-02-09 03:44:23 +00:00
*
* @return {number} The amount of separation that occurred.
*/
var TileCheckX = function (body, tile, tileLeft, tileRight, tileBias)
{
var ox = 0;
if (body.deltaX() < 0 && !body.blocked.left && tile.collideRight && body.checkCollision.left)
{
// Body is moving LEFT
if (tile.faceRight && body.x < tileRight)
{
ox = body.x - tileRight;
if (ox < -tileBias)
{
ox = 0;
}
}
}
else if (body.deltaX() > 0 && !body.blocked.right && tile.collideLeft && body.checkCollision.right)
{
// Body is moving RIGHT
if (tile.faceLeft && body.right > tileLeft)
{
ox = body.right - tileLeft;
if (ox > tileBias)
{
ox = 0;
}
}
}
if (ox !== 0)
{
if (body.customSeparateX)
{
body.overlapX = ox;
}
else
{
ProcessTileSeparationX(body, ox);
}
}
return ox;
};
module.exports = TileCheckX;