2017-11-21 16:54:20 +00:00
|
|
|
var Bodies = require('./lib/factory/Bodies');
|
|
|
|
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');
|
2017-11-21 16:54:20 +00:00
|
|
|
var Vector2 = require('../../math/Vector2');
|
|
|
|
|
2018-02-12 13:14:50 +00:00
|
|
|
/**
|
|
|
|
* @classdesc
|
|
|
|
* A Matter Physics Image Game Object.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* @class MatterImage
|
|
|
|
* @extends Phaser.GameObjects.Image
|
|
|
|
* @memberOf Phaser.Physics.Matter
|
|
|
|
* @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.ScaleMode
|
|
|
|
* @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
|
|
|
|
*
|
|
|
|
* @param {Phaser.Physics.Matter.World} world - [description]
|
|
|
|
* @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.
|
|
|
|
* @param {string} texture - The key of the Texture this Game Object will use to render with, as stored in the Texture Manager.
|
|
|
|
* @param {string|integer} [frame] - An optional frame from the Texture this Game Object is rendering with.
|
|
|
|
* @param {object} options - [description]
|
|
|
|
*/
|
2017-11-21 16:54:20 +00:00
|
|
|
var MatterImage = new Class({
|
|
|
|
|
|
|
|
Extends: Image,
|
|
|
|
|
|
|
|
Mixins: [
|
|
|
|
Components.Bounce,
|
2017-11-22 02:25:06 +00:00
|
|
|
Components.Collision,
|
2017-11-21 16:54:20 +00:00
|
|
|
Components.Force,
|
|
|
|
Components.Friction,
|
2017-11-22 17:11:09 +00:00
|
|
|
Components.Gravity,
|
2017-11-21 16:54:20 +00:00
|
|
|
Components.Mass,
|
2017-11-22 14:13:25 +00:00
|
|
|
Components.Sensor,
|
2017-11-27 03:45:03 +00:00
|
|
|
Components.SetBody,
|
2017-11-22 14:13:25 +00:00
|
|
|
Components.Sleep,
|
2017-11-21 16:54:20 +00:00
|
|
|
Components.Static,
|
|
|
|
Components.Transform,
|
2018-01-30 19:16:00 +00:00
|
|
|
Components.Velocity,
|
|
|
|
Pipeline
|
2017-11-21 16:54:20 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
initialize:
|
|
|
|
|
|
|
|
function MatterImage (world, x, y, texture, frame, options)
|
|
|
|
{
|
|
|
|
GameObject.call(this, world.scene, 'Image');
|
|
|
|
|
|
|
|
this.setTexture(texture, frame);
|
|
|
|
this.setSizeToFrame();
|
|
|
|
this.setOrigin();
|
|
|
|
|
2017-11-27 03:45:03 +00:00
|
|
|
this.world = world;
|
2017-11-21 16:54:20 +00:00
|
|
|
|
2017-11-27 03:45:03 +00:00
|
|
|
this._tempVec2 = new Vector2(x, y);
|
2017-11-21 16:54:20 +00:00
|
|
|
|
2017-11-27 03:45:03 +00:00
|
|
|
var shape = GetFastValue(options, 'shape', null);
|
2017-11-21 16:54:20 +00:00
|
|
|
|
2017-11-27 03:45:03 +00:00
|
|
|
if (!shape)
|
2017-11-21 16:54:20 +00:00
|
|
|
{
|
|
|
|
this.body = Bodies.rectangle(x, y, this.width, this.height, options);
|
|
|
|
|
2017-11-27 03:45:03 +00:00
|
|
|
this.body.gameObject = this;
|
2017-11-22 02:25:06 +00:00
|
|
|
|
2017-11-27 03:45:03 +00:00
|
|
|
if (GetFastValue(options, 'addToWorld', true))
|
|
|
|
{
|
|
|
|
world.add(this.body);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2017-11-23 16:54:55 +00:00
|
|
|
{
|
2017-11-27 03:45:03 +00:00
|
|
|
this.setBody(shape, options);
|
2017-11-23 16:54:55 +00:00
|
|
|
}
|
2017-11-21 16:54:20 +00:00
|
|
|
|
|
|
|
this.setPosition(x, y);
|
2018-01-30 19:16:00 +00:00
|
|
|
|
|
|
|
this.initPipeline('TextureTintPipeline');
|
2017-11-21 16:54:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = MatterImage;
|