2017-02-23 03:10:48 +00:00
|
|
|
var Class = require('../utils/Class');
|
2017-07-04 01:59:31 +01:00
|
|
|
var Components = require('./components');
|
2017-09-08 01:59:53 +01:00
|
|
|
var DataProxy = require('./components/DataProxy');
|
2016-12-07 02:28:22 +00:00
|
|
|
|
2017-09-12 00:28:53 +01:00
|
|
|
/**
|
|
|
|
* The base GameObject class that all Game Objects extend.
|
|
|
|
*
|
|
|
|
* @class GameObject
|
|
|
|
*
|
|
|
|
* @param {Scene} scene - The Scene to which this Game Object belongs.
|
|
|
|
* @param {String} type - A textual representation of the Game Object.
|
|
|
|
*/
|
2017-02-23 03:10:48 +00:00
|
|
|
var GameObject = new Class({
|
2016-12-07 02:28:22 +00:00
|
|
|
|
2017-02-23 03:10:48 +00:00
|
|
|
initialize:
|
2016-12-07 02:28:22 +00:00
|
|
|
|
2017-07-14 14:30:20 +01:00
|
|
|
function GameObject (scene, type)
|
2017-02-23 03:10:48 +00:00
|
|
|
{
|
2017-09-12 00:28:53 +01:00
|
|
|
/**
|
|
|
|
* The Scene to which this Game Object belongs.
|
|
|
|
*
|
|
|
|
* @property
|
|
|
|
* @type {Scene}
|
|
|
|
*/
|
2017-07-14 14:30:20 +01:00
|
|
|
this.scene = scene;
|
2016-12-07 02:28:22 +00:00
|
|
|
|
2017-09-12 00:28:53 +01:00
|
|
|
/**
|
|
|
|
* A textual representation of this Game Object.
|
|
|
|
*
|
|
|
|
* @property
|
|
|
|
* @type {string}
|
|
|
|
*/
|
2017-04-13 00:05:12 +01:00
|
|
|
this.type = type;
|
2017-07-04 01:59:31 +01:00
|
|
|
|
2017-09-12 00:28:53 +01:00
|
|
|
/**
|
|
|
|
* The name of this Game Object. Blank by default and not populated by Phaser. Left for developers use.
|
|
|
|
*
|
|
|
|
* @property
|
|
|
|
* @type {String}
|
|
|
|
*/
|
2017-02-23 03:10:48 +00:00
|
|
|
this.name = '';
|
2017-07-04 01:59:31 +01:00
|
|
|
|
2017-09-12 00:28:53 +01:00
|
|
|
/**
|
|
|
|
* The active state of this Game Object. A Game Object with an active state of `true` is processed by the UpdateList.
|
|
|
|
*
|
|
|
|
* @property
|
|
|
|
* @type {Boolean}
|
|
|
|
*/
|
2017-07-07 01:56:02 +01:00
|
|
|
this.active = true;
|
|
|
|
|
2017-09-12 00:28:53 +01:00
|
|
|
/**
|
|
|
|
* The Tab Index of this Game Object.
|
|
|
|
*
|
|
|
|
* @property
|
|
|
|
* @type {Number}
|
|
|
|
*/
|
2017-05-01 01:27:35 +01:00
|
|
|
this.tabIndex = -1;
|
2016-12-07 02:28:22 +00:00
|
|
|
|
2017-09-12 00:28:53 +01:00
|
|
|
/**
|
|
|
|
* A proxy to the Data class. It allows you to store and query key/value paired information specific to this Game Object.
|
|
|
|
*
|
|
|
|
* @property
|
|
|
|
* @type {DataProxy}
|
|
|
|
*/
|
2017-09-08 01:59:53 +01:00
|
|
|
this.data = new DataProxy(scene, this);
|
|
|
|
|
2017-09-12 00:28:53 +01:00
|
|
|
/**
|
|
|
|
* The bitmask that determines if the Game Object will render or not.
|
|
|
|
* Structure: 0001 | 0010 | 0100 | 1000
|
|
|
|
* The components: Visible, Alpha, Transform and Texture set bits in this mask respectively
|
|
|
|
*
|
|
|
|
* @property
|
|
|
|
* @type {Number}
|
|
|
|
* @private
|
|
|
|
*/
|
2017-02-23 03:10:48 +00:00
|
|
|
this.renderMask = 15;
|
2017-09-12 00:28:53 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The flags that the renderMask uses to determine if the Game Object will render or not.
|
|
|
|
*
|
|
|
|
* @property
|
|
|
|
* @type {Number}
|
|
|
|
* @private
|
|
|
|
*/
|
2017-02-23 03:10:48 +00:00
|
|
|
this.renderFlags = 15;
|
2017-09-12 00:28:53 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A bitmask that controls if this Game Object is drawn by a Camera or not.
|
|
|
|
*
|
|
|
|
* @property
|
|
|
|
* @type {Number}
|
|
|
|
* @private
|
|
|
|
*/
|
2017-08-15 16:42:04 -03:00
|
|
|
this.cameraFilter = 0;
|
2017-07-07 18:12:57 +01:00
|
|
|
|
2017-09-12 00:28:53 +01:00
|
|
|
/**
|
|
|
|
* If this Game Object is enabled for input then this property will contain a Phaser.Input.InteractiveObject reference.
|
|
|
|
*
|
|
|
|
* @property
|
|
|
|
* @type {Phaser.Input.InteractiveObject|null}
|
|
|
|
*/
|
2017-07-18 13:53:34 +01:00
|
|
|
this.input = null;
|
2017-07-13 02:05:32 +01:00
|
|
|
|
2017-09-12 00:28:53 +01:00
|
|
|
/**
|
|
|
|
* If this Game Object is enabled for physics then this property will contain a reference to a Physics Body.
|
|
|
|
*
|
|
|
|
* @property
|
|
|
|
* @type {Phaser.Physics.Body|null}
|
|
|
|
*/
|
2017-08-15 23:35:16 +01:00
|
|
|
this.body = null;
|
|
|
|
|
2017-09-12 00:28:53 +01:00
|
|
|
/**
|
|
|
|
* Should this Game Object trigger a Scene level z-depth sort?
|
|
|
|
* Automatically set by various components but can also be set manually as required.
|
|
|
|
*
|
|
|
|
* @property
|
|
|
|
* @type {Boolean}
|
|
|
|
*/
|
2017-07-14 14:30:20 +01:00
|
|
|
this.scene.sys.sortChildrenFlag = true;
|
2017-02-23 03:10:48 +00:00
|
|
|
},
|
2016-12-07 02:28:22 +00:00
|
|
|
|
2017-09-12 00:28:53 +01:00
|
|
|
/**
|
|
|
|
* Sets the `active` property of this Game Object and returns this Game Object for further chaining.
|
|
|
|
*
|
|
|
|
* @method setActive
|
|
|
|
* @memberof GameObject#
|
|
|
|
*
|
|
|
|
* @param {Boolean} value - True if this Game Object should be set as active, false if not.
|
|
|
|
* @returns {this}
|
|
|
|
*/
|
2017-07-07 01:56:02 +01:00
|
|
|
setActive: function (value)
|
|
|
|
{
|
|
|
|
this.active = value;
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2017-09-12 00:28:53 +01:00
|
|
|
/**
|
|
|
|
* Sets the `name` property of this Game Object and returns this Game Object for further chaining.
|
|
|
|
*
|
|
|
|
* @method setName
|
|
|
|
* @memberof GameObject#
|
|
|
|
*
|
|
|
|
* @param {String} value - The name to be given to this Game Object.
|
|
|
|
* @returns {this}
|
|
|
|
*/
|
2017-07-27 17:39:46 +01:00
|
|
|
setName: function (value)
|
2017-07-07 18:26:03 +01:00
|
|
|
{
|
2017-07-27 17:39:46 +01:00
|
|
|
this.name = value;
|
|
|
|
|
|
|
|
return this;
|
2017-07-07 18:26:03 +01:00
|
|
|
},
|
|
|
|
|
2017-09-12 00:28:53 +01:00
|
|
|
/**
|
|
|
|
* Pass this Game Object to the Input Manager to enable it for Input.
|
|
|
|
*
|
|
|
|
* @method setInteractive
|
|
|
|
* @memberof GameObject#
|
|
|
|
*
|
|
|
|
* @param {[type]} [shape] - A geometric shape that defines the hit area for the Game Object. If not specified a Rectangle will be used.
|
|
|
|
* @param {Function} [callback] - A callback to be invoked when the Game Object is interacted with.
|
|
|
|
* @returns {this}
|
|
|
|
*/
|
2017-07-18 13:53:34 +01:00
|
|
|
setInteractive: function (shape, callback)
|
2017-07-13 02:05:32 +01:00
|
|
|
{
|
2017-07-18 13:53:34 +01:00
|
|
|
this.scene.sys.inputManager.enable(this, shape, callback);
|
2017-07-13 02:05:32 +01:00
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2017-07-27 17:39:46 +01:00
|
|
|
// To be overridden by custom GameObjects. Allows base objects to be used in a Pool.
|
|
|
|
update: function ()
|
|
|
|
{
|
|
|
|
},
|
|
|
|
|
2017-09-12 00:28:53 +01:00
|
|
|
/**
|
|
|
|
* Returns a JSON representation of the Game Object.
|
|
|
|
*
|
|
|
|
* @method toJSON
|
|
|
|
* @memberof GameObject#
|
|
|
|
*
|
|
|
|
* @return {Object} A JSON representation of the Game Object.
|
|
|
|
*/
|
2017-04-13 00:35:27 +01:00
|
|
|
toJSON: function ()
|
|
|
|
{
|
|
|
|
return Components.ToJSON(this);
|
|
|
|
},
|
|
|
|
|
2017-09-12 00:28:53 +01:00
|
|
|
/**
|
|
|
|
* Compares the renderMask with the renderFlags to see if this Game Object will render or not.
|
|
|
|
*
|
|
|
|
* @method willRender
|
|
|
|
* @memberof GameObject#
|
|
|
|
*
|
|
|
|
* @return {Boolean} True if the Game Object should be rendered, otherwise false.
|
|
|
|
*/
|
2017-07-27 14:22:05 +01:00
|
|
|
willRender: function ()
|
|
|
|
{
|
|
|
|
return (this.renderMask === this.renderFlags);
|
|
|
|
},
|
|
|
|
|
2017-09-12 00:28:53 +01:00
|
|
|
/**
|
|
|
|
* Destroys this Game Object, removing it from the Display List and Update List.
|
|
|
|
* Also removes it from the Input and Physics Managers if enabled.
|
|
|
|
* Sets the active state to `false`. Use this to remove a Game Object from your game if
|
|
|
|
* you don't plan to use it again later. If you do wish to use it later then look at using
|
|
|
|
* the Game Object Pool class instead.
|
|
|
|
*
|
|
|
|
* @method destroy
|
|
|
|
* @memberof GameObject#
|
|
|
|
*/
|
2016-12-07 02:28:22 +00:00
|
|
|
destroy: function ()
|
|
|
|
{
|
2017-09-01 19:47:26 +01:00
|
|
|
this.scene.sys.displayList.remove(this);
|
|
|
|
this.scene.sys.updateList.remove(this);
|
2017-03-30 13:28:40 +01:00
|
|
|
|
2017-07-28 01:17:18 +01:00
|
|
|
if (this.input)
|
|
|
|
{
|
|
|
|
this.scene.sys.inputManager.clear(this);
|
|
|
|
}
|
|
|
|
|
2017-08-15 23:35:16 +01:00
|
|
|
if (this.body)
|
|
|
|
{
|
|
|
|
this.scene.sys.physicsManager.remove(this);
|
|
|
|
}
|
|
|
|
|
2017-08-07 17:14:13 +01:00
|
|
|
this.active = false;
|
|
|
|
|
2017-07-14 14:30:20 +01:00
|
|
|
this.scene = undefined;
|
2016-12-07 02:28:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = GameObject;
|