2016-12-07 02:28:22 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2016 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
2017-02-23 03:10:48 +00:00
|
|
|
var Class = require('../utils/Class');
|
2017-04-12 23:35:27 +00:00
|
|
|
var Components = require('../components');
|
2016-12-07 02:28:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This is the base Game Object class that you can use when creating your own extended Game Objects.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
*/
|
|
|
|
|
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-04-12 23:05:12 +00:00
|
|
|
function GameObject (state, type)
|
2017-02-23 03:10:48 +00:00
|
|
|
{
|
|
|
|
this.state = state;
|
2016-12-07 02:28:22 +00:00
|
|
|
|
2017-02-23 03:10:48 +00:00
|
|
|
this.id = 0;
|
2017-04-12 23:05:12 +00:00
|
|
|
this.type = type;
|
2017-02-23 03:10:48 +00:00
|
|
|
this.name = '';
|
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;
|
|
|
|
},
|
2016-12-07 02:28:22 +00:00
|
|
|
|
2017-04-04 22:59:27 +00:00
|
|
|
// To be overridden by custom Game Objects
|
|
|
|
preUpdate: 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);
|
|
|
|
},
|
|
|
|
|
2016-12-07 02:28:22 +00:00
|
|
|
destroy: function ()
|
|
|
|
{
|
2017-03-30 12:28:40 +00:00
|
|
|
this.parent.remove(this);
|
|
|
|
|
2017-02-22 16:30:53 +00:00
|
|
|
this.state = undefined;
|
2016-12-07 02:28:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = GameObject;
|