2017-02-23 03:10:48 +00:00
|
|
|
var Class = require('../utils/Class');
|
2017-07-04 00:59:31 +00:00
|
|
|
var Components = require('./components');
|
2016-12-07 02:28:22 +00:00
|
|
|
|
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 13:30:20 +00:00
|
|
|
function GameObject (scene, type)
|
2017-02-23 03:10:48 +00:00
|
|
|
{
|
2017-07-14 13:30:20 +00:00
|
|
|
this.scene = scene;
|
2016-12-07 02:28:22 +00:00
|
|
|
|
2017-04-12 23:05:12 +00:00
|
|
|
this.type = type;
|
2017-07-04 00:59:31 +00:00
|
|
|
|
2017-02-23 03:10:48 +00:00
|
|
|
this.name = '';
|
2017-07-04 00:59:31 +00:00
|
|
|
|
2017-07-07 00:56:02 +00:00
|
|
|
this.active = true;
|
|
|
|
|
2017-05-01 00:27:35 +00:00
|
|
|
this.tabIndex = -1;
|
2016-12-07 02:28:22 +00:00
|
|
|
|
2017-02-23 03:10:48 +00:00
|
|
|
this.parent;
|
2016-12-07 02:28:22 +00:00
|
|
|
|
2017-02-23 03:10:48 +00:00
|
|
|
// 0001 | 0010 | 0100 | 1000
|
|
|
|
// Will Render bitmask flags for the components Visible, Alpha, Transform and Texture respectively
|
|
|
|
this.renderMask = 15;
|
|
|
|
this.renderFlags = 15;
|
2017-07-07 17:12:57 +00:00
|
|
|
|
2017-07-18 12:53:34 +00:00
|
|
|
this.input = null;
|
2017-07-13 01:05:32 +00:00
|
|
|
|
2017-07-14 13:30:20 +00:00
|
|
|
// Trigger a scene z-depth sort
|
|
|
|
this.scene.sys.sortChildrenFlag = true;
|
2017-02-23 03:10:48 +00:00
|
|
|
},
|
2016-12-07 02:28:22 +00:00
|
|
|
|
2017-07-07 00:56:02 +00:00
|
|
|
// For GameObject Pooling and item selection
|
|
|
|
setActive: function (value)
|
|
|
|
{
|
|
|
|
this.active = value;
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2017-07-27 16:39:46 +00:00
|
|
|
setName: function (value)
|
2017-07-07 17:26:03 +00:00
|
|
|
{
|
2017-07-27 16:39:46 +00:00
|
|
|
this.name = value;
|
|
|
|
|
|
|
|
return this;
|
2017-07-07 17:26:03 +00:00
|
|
|
},
|
|
|
|
|
2017-07-18 12:53:34 +00:00
|
|
|
setInteractive: function (shape, callback)
|
2017-07-13 01:05:32 +00:00
|
|
|
{
|
2017-07-18 12:53:34 +00:00
|
|
|
this.scene.sys.inputManager.enable(this, shape, callback);
|
2017-07-13 01:05:32 +00:00
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2017-07-27 16:39:46 +00:00
|
|
|
// To be overridden by custom GameObjects. Allows base objects to be used in a Pool.
|
|
|
|
update: function ()
|
|
|
|
{
|
|
|
|
},
|
|
|
|
|
2017-04-12 23:35:27 +00:00
|
|
|
// Can be overridden by custom Game Objects, but provides default export functionality
|
|
|
|
toJSON: function ()
|
|
|
|
{
|
|
|
|
return Components.ToJSON(this);
|
|
|
|
},
|
|
|
|
|
2017-07-27 13:22:05 +00:00
|
|
|
willRender: function ()
|
|
|
|
{
|
|
|
|
return (this.renderMask === this.renderFlags);
|
|
|
|
},
|
|
|
|
|
2016-12-07 02:28:22 +00:00
|
|
|
destroy: function ()
|
|
|
|
{
|
2017-08-07 16:14:13 +00:00
|
|
|
if (this.parent)
|
|
|
|
{
|
|
|
|
this.parent.remove(this);
|
|
|
|
}
|
2017-03-30 12:28:40 +00:00
|
|
|
|
2017-07-28 00:17:18 +00:00
|
|
|
if (this.input)
|
|
|
|
{
|
|
|
|
this.scene.sys.inputManager.clear(this);
|
|
|
|
}
|
|
|
|
|
2017-08-07 16:14:13 +00:00
|
|
|
this.active = false;
|
|
|
|
|
2017-07-14 13:30:20 +00:00
|
|
|
this.scene = undefined;
|
2016-12-07 02:28:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = GameObject;
|