2017-08-18 00:42:14 +00:00
|
|
|
var Class = require('../../utils/Class');
|
2017-07-04 00:59:31 +00:00
|
|
|
|
2017-09-14 01:27:29 +00:00
|
|
|
var GameObjectCreator = new Class({
|
2017-07-04 00:59:31 +00:00
|
|
|
|
|
|
|
initialize:
|
|
|
|
|
2017-07-14 13:30:20 +00:00
|
|
|
function GameObjectCreator (scene)
|
2017-07-04 00:59:31 +00:00
|
|
|
{
|
2017-07-14 13:30:20 +00:00
|
|
|
this.scene = scene;
|
2017-11-17 13:30:53 +00:00
|
|
|
|
|
|
|
this.displayList;
|
|
|
|
this.updateList;
|
|
|
|
},
|
|
|
|
|
|
|
|
boot: function (sys)
|
|
|
|
{
|
|
|
|
this.displayList = sys.displayList;
|
|
|
|
this.updateList = sys.updateList;
|
2017-07-04 00:59:31 +00:00
|
|
|
},
|
|
|
|
|
2017-09-14 01:27:29 +00:00
|
|
|
destroy: function ()
|
2017-07-04 00:59:31 +00:00
|
|
|
{
|
2017-09-14 01:27:29 +00:00
|
|
|
this.scene = null;
|
2017-11-17 13:30:53 +00:00
|
|
|
this.displayList = null;
|
|
|
|
this.updateList = null;
|
2017-09-14 01:27:29 +00:00
|
|
|
}
|
2017-07-04 00:59:31 +00:00
|
|
|
|
2017-09-14 01:27:29 +00:00
|
|
|
});
|
2017-07-04 00:59:31 +00:00
|
|
|
|
2017-09-14 01:27:29 +00:00
|
|
|
// Static method called directly by the Game Object creator functions
|
2017-07-04 00:59:31 +00:00
|
|
|
|
2017-09-14 01:27:29 +00:00
|
|
|
GameObjectCreator.register = function (type, factoryFunction)
|
|
|
|
{
|
|
|
|
if (!GameObjectCreator.prototype.hasOwnProperty(type))
|
2017-08-11 12:22:41 +00:00
|
|
|
{
|
2017-09-14 01:27:29 +00:00
|
|
|
GameObjectCreator.prototype[type] = factoryFunction;
|
2017-07-04 00:59:31 +00:00
|
|
|
}
|
2017-09-13 15:06:05 +00:00
|
|
|
};
|
|
|
|
|
2017-07-04 00:59:31 +00:00
|
|
|
module.exports = GameObjectCreator;
|