arcade-physics
Version:
Use Arcade Physics without Phaser.
87 lines • 3.62 kB
JavaScript
;
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.GetOverlapY = void 0;
const const_1 = __importDefault(require("./const"));
/**
* Calculates and returns the vertical overlap between two arcade physics bodies and sets their properties
* accordingly, including: `touching.up`, `touching.down`, `touching.none` and `overlapY'.
*
* @function Phaser.Physics.Arcade.GetOverlapY
* @since 3.0.0
*
* @param {Phaser.Physics.Arcade.Body} body1 - The first Body to separate.
* @param {Phaser.Physics.Arcade.Body} body2 - The second Body to separate.
* @param {boolean} overlapOnly - Is this an overlap only check, or part of separation?
* @param {number} bias - A value added to the delta values during collision checks. Increase it to prevent sprite tunneling(sprites passing through another instead of colliding).
*
* @return {number} The amount of overlap.
*/
const GetOverlapY = (body1, body2, overlapOnly, bias) => {
let overlap = 0;
const maxOverlap = body1.deltaAbsY() + body2.deltaAbsY() + bias;
if (body1._dy === 0 && body2._dy === 0) {
// They overlap but neither of them are moving
body1.embedded = true;
body2.embedded = true;
}
else if (body1._dy > body2._dy) {
// Body1 is moving down and/or Body2 is moving up
overlap = body1.bottom - body2.y;
if ((overlap > maxOverlap && !overlapOnly) ||
body1.checkCollision.down === false ||
body2.checkCollision.up === false) {
overlap = 0;
}
else {
body1.touching.none = false;
body1.touching.down = true;
body2.touching.none = false;
body2.touching.up = true;
if (body2.physicsType === const_1.default.PHYSICS_TYPE.STATIC_BODY && !overlapOnly) {
body1.blocked.none = false;
body1.blocked.down = true;
}
if (body1.physicsType === const_1.default.PHYSICS_TYPE.STATIC_BODY && !overlapOnly) {
body2.blocked.none = false;
body2.blocked.up = true;
}
}
}
else if (body1._dy < body2._dy) {
// Body1 is moving up and/or Body2 is moving down
overlap = body1.y - body2.bottom;
if ((-overlap > maxOverlap && !overlapOnly) ||
body1.checkCollision.up === false ||
body2.checkCollision.down === false) {
overlap = 0;
}
else {
body1.touching.none = false;
body1.touching.up = true;
body2.touching.none = false;
body2.touching.down = true;
if (body2.physicsType === const_1.default.PHYSICS_TYPE.STATIC_BODY && !overlapOnly) {
body1.blocked.none = false;
body1.blocked.up = true;
}
if (body1.physicsType === const_1.default.PHYSICS_TYPE.STATIC_BODY && !overlapOnly) {
body2.blocked.none = false;
body2.blocked.down = true;
}
}
}
// Resets the overlapY to zero if there is no overlap, or to the actual pixel value if there is
body1.overlapY = overlap;
body2.overlapY = overlap;
return overlap;
};
exports.GetOverlapY = GetOverlapY;
//# sourceMappingURL=GetOverlapY.js.map