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}
|
|
|
|
*/
|
|
|
|
|
2018-02-09 03:44:23 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @function Phaser.Physics.Arcade.GetOverlapX
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {Phaser.Physics.Arcade.Body} body1 - [description]
|
|
|
|
* @param {Phaser.Physics.Arcade.Body} body2 - [description]
|
|
|
|
* @param {boolean} overlapOnly - [description]
|
|
|
|
* @param {number} bias - [description]
|
|
|
|
*
|
|
|
|
* @return {number} [description]
|
|
|
|
*/
|
2017-11-09 13:02:55 +00:00
|
|
|
var GetOverlapX = function (body1, body2, overlapOnly, bias)
|
|
|
|
{
|
|
|
|
var overlap = 0;
|
|
|
|
var maxOverlap = body1.deltaAbsX() + body2.deltaAbsX() + bias;
|
|
|
|
|
2018-06-01 14:41:40 +00:00
|
|
|
if (body1._dx === 0 && body2._dx === 0)
|
2017-11-09 13:02:55 +00:00
|
|
|
{
|
|
|
|
// They overlap but neither of them are moving
|
|
|
|
body1.embedded = true;
|
|
|
|
body2.embedded = true;
|
|
|
|
}
|
2018-06-01 14:41:40 +00:00
|
|
|
else if (body1._dx > body2._dx)
|
2017-11-09 13:02:55 +00:00
|
|
|
{
|
|
|
|
// Body1 is moving right and / or Body2 is moving left
|
|
|
|
overlap = body1.right - body2.x;
|
|
|
|
|
|
|
|
if ((overlap > maxOverlap && !overlapOnly) || body1.checkCollision.right === false || body2.checkCollision.left === false)
|
|
|
|
{
|
|
|
|
overlap = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
body1.touching.none = false;
|
|
|
|
body1.touching.right = true;
|
|
|
|
body2.touching.none = false;
|
|
|
|
body2.touching.left = true;
|
|
|
|
}
|
|
|
|
}
|
2018-06-01 14:41:40 +00:00
|
|
|
else if (body1._dx < body2._dx)
|
2017-11-09 13:02:55 +00:00
|
|
|
{
|
|
|
|
// Body1 is moving left and/or Body2 is moving right
|
|
|
|
overlap = body1.x - body2.width - body2.x;
|
|
|
|
|
|
|
|
if ((-overlap > maxOverlap && !overlapOnly) || body1.checkCollision.left === false || body2.checkCollision.right === false)
|
|
|
|
{
|
|
|
|
overlap = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
body1.touching.none = false;
|
|
|
|
body1.touching.left = true;
|
|
|
|
body2.touching.none = false;
|
|
|
|
body2.touching.right = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Resets the overlapX to zero if there is no overlap, or to the actual pixel value if there is
|
|
|
|
body1.overlapX = overlap;
|
|
|
|
body2.overlapX = overlap;
|
|
|
|
|
|
|
|
return overlap;
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = GetOverlapX;
|