phaser/src/physics/arcade/SeparateY.js

67 lines
2.4 KiB
JavaScript
Raw Normal View History

/**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2024 Phaser Studio Inc.
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
*/
var GetOverlapY = require('./GetOverlapY');
var ProcessY = require('./ProcessY');
2018-02-09 03:44:23 +00:00
/**
2018-10-19 11:32:43 +00:00
* Separates two overlapping bodies on the Y-axis (vertically).
*
* Separation involves moving two overlapping bodies so they don't overlap anymore and adjusting their velocities based on their mass. This is a core part of collision detection.
2018-10-19 11:32:43 +00:00
*
* The bodies won't be separated if there is no vertical overlap between them, if they are static, or if either one uses custom logic for its separation.
2018-02-09 03:44:23 +00:00
*
* @function Phaser.Physics.Arcade.SeparateY
* @since 3.0.0
*
* @param {Phaser.Physics.Arcade.Body} body1 - The first Body to separate.
2018-10-19 11:32:43 +00:00
* @param {Phaser.Physics.Arcade.Body} body2 - The second Body to separate.
* @param {boolean} overlapOnly - If `true`, the bodies will only have their overlap data set and no separation will take place.
* @param {number} bias - A value to add to the delta value during overlap checking. Used to prevent sprite tunneling.
* @param {number} [overlap] - If given then this value will be used as the overlap and no check will be run.
2018-02-09 03:44:23 +00:00
*
2018-10-19 16:45:05 +00:00
* @return {boolean} `true` if the two bodies overlap vertically, otherwise `false`.
2018-02-09 03:44:23 +00:00
*/
var SeparateY = function (body1, body2, overlapOnly, bias, overlap)
{
if (overlap === undefined) { overlap = GetOverlapY(body1, body2, overlapOnly, bias); }
2019-03-21 01:02:38 +00:00
var body1Immovable = body1.immovable;
var body2Immovable = body2.immovable;
// Can't separate two immovable bodies, or a body with its own custom separation logic
if (overlapOnly || overlap === 0 || (body1Immovable && body2Immovable) || body1.customSeparateY || body2.customSeparateY)
2019-03-13 17:27:11 +00:00
{
// return true if there was some overlap, otherwise false
return (overlap !== 0) || (body1.embedded && body2.embedded);
2019-03-21 01:02:38 +00:00
}
var blockedState = ProcessY.Set(body1, body2, overlap);
if (!body1Immovable && !body2Immovable)
{
if (blockedState > 0)
{
return true;
}
2019-03-20 15:00:17 +00:00
2020-09-28 14:25:43 +00:00
return ProcessY.Check();
}
else if (body1Immovable)
{
ProcessY.RunImmovableBody1(blockedState);
}
else if (body2Immovable)
{
ProcessY.RunImmovableBody2(blockedState);
2019-03-13 17:27:11 +00:00
}
// If we got this far then there WAS overlap, and separation is complete, so return true
return true;
};
module.exports = SeparateY;