phaser/src/physics/matter-js/MatterImage.js

141 lines
4.9 KiB
JavaScript
Raw Normal View History

2018-02-12 16:01:20 +00:00
/**
* @author Richard Davey <rich@photonstorm.com>
2020-01-15 12:07:09 +00:00
* @copyright 2020 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
*/
var Class = require('../../utils/Class');
var Components = require('./components');
var GameObject = require('../../gameobjects/GameObject');
var GetFastValue = require('../../utils/object/GetFastValue');
var Image = require('../../gameobjects/image/Image');
2018-02-12 13:14:50 +00:00
var Pipeline = require('../../gameobjects/components/Pipeline');
var Vector2 = require('../../math/Vector2');
2018-02-12 13:14:50 +00:00
/**
* @classdesc
* A Matter Physics Image Game Object.
2020-07-13 12:29:01 +00:00
*
2018-02-12 13:14:50 +00:00
* An Image is a light-weight Game Object useful for the display of static images in your game,
* such as logos, backgrounds, scenery or other non-animated elements. Images can have input
* events and physics bodies, or be tweened, tinted or scrolled. The main difference between an
* Image and a Sprite is that you cannot animate an Image as they do not have the Animation component.
*
2018-03-21 14:41:45 +00:00
* @class Image
2018-02-12 13:14:50 +00:00
* @extends Phaser.GameObjects.Image
2018-10-10 09:49:13 +00:00
* @memberof Phaser.Physics.Matter
2018-02-12 13:14:50 +00:00
* @constructor
* @since 3.0.0
*
* @extends Phaser.Physics.Matter.Components.Bounce
* @extends Phaser.Physics.Matter.Components.Collision
* @extends Phaser.Physics.Matter.Components.Force
* @extends Phaser.Physics.Matter.Components.Friction
* @extends Phaser.Physics.Matter.Components.Gravity
* @extends Phaser.Physics.Matter.Components.Mass
* @extends Phaser.Physics.Matter.Components.Sensor
* @extends Phaser.Physics.Matter.Components.SetBody
* @extends Phaser.Physics.Matter.Components.Sleep
* @extends Phaser.Physics.Matter.Components.Static
* @extends Phaser.Physics.Matter.Components.Transform
* @extends Phaser.Physics.Matter.Components.Velocity
* @extends Phaser.GameObjects.Components.Alpha
* @extends Phaser.GameObjects.Components.BlendMode
* @extends Phaser.GameObjects.Components.Depth
* @extends Phaser.GameObjects.Components.Flip
* @extends Phaser.GameObjects.Components.GetBounds
* @extends Phaser.GameObjects.Components.Origin
* @extends Phaser.GameObjects.Components.Pipeline
* @extends Phaser.GameObjects.Components.ScrollFactor
* @extends Phaser.GameObjects.Components.Size
* @extends Phaser.GameObjects.Components.Texture
* @extends Phaser.GameObjects.Components.Tint
* @extends Phaser.GameObjects.Components.Transform
* @extends Phaser.GameObjects.Components.Visible
*
2020-01-02 16:45:28 +00:00
* @param {Phaser.Physics.Matter.World} world - A reference to the Matter.World instance that this body belongs to.
2018-02-12 13:14:50 +00:00
* @param {number} x - The horizontal position of this Game Object in the world.
* @param {number} y - The vertical position of this Game Object in the world.
2020-07-13 12:29:01 +00:00
* @param {(string|Phaser.Textures.Texture)} texture - The key, or instance of the Texture this Game Object will use to render with, as stored in the Texture Manager.
2020-11-23 10:32:00 +00:00
* @param {(string|number)} [frame] - An optional frame from the Texture this Game Object is rendering with.
2020-01-08 11:14:40 +00:00
* @param {Phaser.Types.Physics.Matter.MatterBodyConfig} [options] - An optional Body configuration object that is used to set initial Body properties on creation.
2018-02-12 13:14:50 +00:00
*/
var MatterImage = new Class({
Extends: Image,
Mixins: [
Components.Bounce,
2017-11-22 02:25:06 +00:00
Components.Collision,
Components.Force,
Components.Friction,
2017-11-22 17:11:09 +00:00
Components.Gravity,
Components.Mass,
Components.Sensor,
Components.SetBody,
Components.Sleep,
Components.Static,
Components.Transform,
2018-01-30 19:16:00 +00:00
Components.Velocity,
Pipeline
],
initialize:
function MatterImage (world, x, y, texture, frame, options)
{
GameObject.call(this, world.scene, 'Image');
2020-07-08 19:04:23 +00:00
/**
* The internal crop data object, as used by `setCrop` and passed to the `Frame.setCropUVs` method.
*
* @name Phaser.Physics.Matter.Image#_crop
* @type {object}
* @private
* @since 3.24.0
*/
this._crop = this.resetCropObject();
this.setTexture(texture, frame);
this.setSizeToFrame();
this.setOrigin();
2018-03-21 14:41:45 +00:00
/**
2020-01-02 16:45:28 +00:00
* A reference to the Matter.World instance that this body belongs to.
2018-03-21 14:41:45 +00:00
*
* @name Phaser.Physics.Matter.Image#world
* @type {Phaser.Physics.Matter.World}
* @since 3.0.0
*/
this.world = world;
2018-03-21 14:41:45 +00:00
/**
2020-01-02 16:45:28 +00:00
* An internal temp vector used for velocity and force calculations.
2018-03-21 14:41:45 +00:00
*
* @name Phaser.Physics.Matter.Image#_tempVec2
* @type {Phaser.Math.Vector2}
* @private
* @since 3.0.0
*/
this._tempVec2 = new Vector2(x, y);
var shape = GetFastValue(options, 'shape', null);
if (shape)
{
this.setBody(shape, options);
}
else
{
2018-04-11 15:58:25 +00:00
this.setRectangle(this.width, this.height, options);
}
this.setPosition(x, y);
2018-01-30 19:16:00 +00:00
this.initPipeline();
}
});
module.exports = MatterImage;