2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2018 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
2018-01-10 16:29:37 +00:00
|
|
|
var Class = require('../utils/Class');
|
2018-01-30 00:55:27 +00:00
|
|
|
|
2016-12-07 01:40:56 +00:00
|
|
|
/**
|
2018-02-12 22:16:18 +00:00
|
|
|
* @classdesc
|
|
|
|
* The Data Component features a means to store pieces of data specific to a Game Object, System or Plugin.
|
|
|
|
* You can then search, query it, and retrieve the data. The parent must either extend EventEmitter,
|
|
|
|
* or have a property called `events` that is an instance of it.
|
|
|
|
*
|
|
|
|
* @class DataManager
|
|
|
|
* @memberOf Phaser.Data
|
|
|
|
* @constructor
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {any} parent - [description]
|
|
|
|
* @param {any} eventEmitter - [description]
|
|
|
|
*/
|
2018-01-30 00:55:27 +00:00
|
|
|
var DataManager = new Class({
|
2016-12-07 01:40:56 +00:00
|
|
|
|
2017-06-30 14:47:51 +00:00
|
|
|
initialize:
|
2017-01-30 00:00:45 +00:00
|
|
|
|
2018-01-30 00:55:27 +00:00
|
|
|
function DataManager (parent, eventEmitter)
|
2017-06-30 14:47:51 +00:00
|
|
|
{
|
2018-02-12 22:16:18 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.Data.DataManager#parent
|
|
|
|
* @type {any}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-06-30 14:47:51 +00:00
|
|
|
this.parent = parent;
|
2016-12-07 01:40:56 +00:00
|
|
|
|
2018-02-12 22:16:18 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.Data.DataManager#events
|
2018-02-13 00:40:51 +00:00
|
|
|
* @type {EventEmitter}
|
2018-02-12 22:16:18 +00:00
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2018-01-30 00:55:27 +00:00
|
|
|
this.events = eventEmitter;
|
|
|
|
|
|
|
|
if (!eventEmitter)
|
|
|
|
{
|
|
|
|
this.events = (parent.events) ? parent.events : parent;
|
|
|
|
}
|
2016-12-07 01:40:56 +00:00
|
|
|
|
2018-02-12 22:16:18 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.Data.DataManager#list
|
|
|
|
* @type {object}
|
|
|
|
* @default {}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-06-30 14:47:51 +00:00
|
|
|
this.list = {};
|
2016-12-07 01:40:56 +00:00
|
|
|
|
2018-02-12 22:16:18 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.Data.DataManager#blockSet
|
|
|
|
* @type {boolean}
|
|
|
|
* @default false
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2018-01-30 00:55:27 +00:00
|
|
|
this.blockSet = false;
|
2016-12-07 01:40:56 +00:00
|
|
|
|
2018-02-12 22:16:18 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.Data.DataManager#_frozen
|
|
|
|
* @type {boolean}
|
|
|
|
* @private
|
|
|
|
* @default false
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-06-30 14:47:51 +00:00
|
|
|
this._frozen = false;
|
2018-01-31 03:38:10 +00:00
|
|
|
|
|
|
|
this.events.once('destroy', this.destroy, this);
|
2017-06-30 14:47:51 +00:00
|
|
|
},
|
2016-12-07 01:40:56 +00:00
|
|
|
|
2018-02-12 22:16:18 +00:00
|
|
|
/**
|
|
|
|
* Retrieves the value for the given key, or undefined if it doesn't exist.
|
|
|
|
*
|
|
|
|
* @method Phaser.Data.DataManager#get
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {string} key - [description]
|
|
|
|
*
|
|
|
|
* @return {any} [description]
|
|
|
|
*/
|
2016-12-07 01:40:56 +00:00
|
|
|
get: function (key)
|
|
|
|
{
|
|
|
|
return this.list[key];
|
|
|
|
},
|
|
|
|
|
2018-02-12 22:16:18 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.Data.DataManager#getAll
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @return {object} [description]
|
|
|
|
*/
|
2016-12-07 01:40:56 +00:00
|
|
|
getAll: function ()
|
|
|
|
{
|
|
|
|
var results = {};
|
|
|
|
|
|
|
|
for (var key in this.list)
|
|
|
|
{
|
|
|
|
results[key] = this.list[key];
|
|
|
|
}
|
|
|
|
|
|
|
|
return results;
|
|
|
|
},
|
|
|
|
|
2018-02-12 22:16:18 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.Data.DataManager#query
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {string} search - [description]
|
|
|
|
*
|
|
|
|
* @return {object} [description]
|
|
|
|
*/
|
2016-12-07 01:40:56 +00:00
|
|
|
query: function (search)
|
|
|
|
{
|
|
|
|
var results = {};
|
|
|
|
|
|
|
|
for (var key in this.list)
|
|
|
|
{
|
|
|
|
if (key.match(search))
|
|
|
|
{
|
|
|
|
results[key] = this.list[key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return results;
|
|
|
|
},
|
|
|
|
|
2018-02-12 22:16:18 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.Data.DataManager#set
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {string} key - [description]
|
|
|
|
* @param {any} data - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.Data.DataManager} This DataManager object.
|
|
|
|
*/
|
2016-12-07 01:40:56 +00:00
|
|
|
set: function (key, data)
|
|
|
|
{
|
|
|
|
if (this._frozen)
|
|
|
|
{
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2018-01-30 00:55:27 +00:00
|
|
|
if (this.events.listenerCount('changedata') > 0)
|
2016-12-07 01:40:56 +00:00
|
|
|
{
|
2018-01-30 00:55:27 +00:00
|
|
|
this.blockSet = false;
|
2016-12-07 01:40:56 +00:00
|
|
|
|
2018-01-30 00:55:27 +00:00
|
|
|
var _this = this;
|
2016-12-07 01:40:56 +00:00
|
|
|
|
2018-01-30 00:55:27 +00:00
|
|
|
var resetFunction = function (value)
|
2016-12-07 01:40:56 +00:00
|
|
|
{
|
2018-01-30 00:55:27 +00:00
|
|
|
_this.blockSet = true;
|
|
|
|
_this.list[key] = value;
|
|
|
|
_this.events.emit('setdata', _this.parent, key, value);
|
|
|
|
};
|
2016-12-07 01:40:56 +00:00
|
|
|
|
2018-01-30 00:55:27 +00:00
|
|
|
this.events.emit('changedata', this.parent, key, data, resetFunction);
|
2017-01-30 00:00:45 +00:00
|
|
|
|
2018-01-30 00:55:27 +00:00
|
|
|
// One of the listeners blocked this update from being set, so abort
|
|
|
|
if (this.blockSet)
|
2016-12-07 01:40:56 +00:00
|
|
|
{
|
2018-01-30 00:55:27 +00:00
|
|
|
return this;
|
2016-12-07 01:40:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-30 00:55:27 +00:00
|
|
|
this.list[key] = data;
|
2016-12-07 01:40:56 +00:00
|
|
|
|
2018-01-30 00:55:27 +00:00
|
|
|
this.events.emit('setdata', this.parent, key, data);
|
2016-12-07 01:40:56 +00:00
|
|
|
|
2018-01-30 00:55:27 +00:00
|
|
|
return this;
|
2016-12-07 01:40:56 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2018-02-12 22:16:18 +00:00
|
|
|
* Passes all data entries to the given callback. Stores the result of the callback.
|
|
|
|
*
|
|
|
|
* @method Phaser.Data.DataManager#each
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {function} callback - The function to call.
|
|
|
|
* @param {object} [scope] - Value to use as `this` when executing callback.
|
|
|
|
* @param {...*} [arguments] - Additional arguments that will be passed to the callback, after the game object, key, and data.
|
|
|
|
*
|
|
|
|
* @return {Phaser.Data.DataManager} This DataManager object.
|
|
|
|
*/
|
2016-12-07 01:40:56 +00:00
|
|
|
each: function (callback, scope)
|
|
|
|
{
|
|
|
|
var args = [ this.parent, null, undefined ];
|
|
|
|
|
|
|
|
for (var i = 1; i < arguments.length; i++)
|
|
|
|
{
|
|
|
|
args.push(arguments[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (var key in this.list)
|
|
|
|
{
|
|
|
|
args[1] = key;
|
|
|
|
args[2] = this.list[key];
|
|
|
|
|
|
|
|
callback.apply(scope, args);
|
|
|
|
}
|
2018-01-30 00:55:27 +00:00
|
|
|
|
|
|
|
return this;
|
2016-12-07 01:40:56 +00:00
|
|
|
},
|
|
|
|
|
2018-02-12 22:16:18 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.Data.DataManager#merge
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {object} data - [description]
|
|
|
|
* @param {boolean} overwrite - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.Data.DataManager} This DataManager object.
|
|
|
|
*/
|
2016-12-07 01:40:56 +00:00
|
|
|
merge: function (data, overwrite)
|
|
|
|
{
|
|
|
|
if (overwrite === undefined) { overwrite = true; }
|
|
|
|
|
|
|
|
// Merge data from another component into this one
|
|
|
|
for (var key in data)
|
|
|
|
{
|
|
|
|
if (overwrite || (!overwrite && !this.has(key)))
|
|
|
|
{
|
2018-03-16 08:57:25 +00:00
|
|
|
this.list[key] = data[key];
|
2016-12-07 01:40:56 +00:00
|
|
|
}
|
|
|
|
}
|
2018-01-30 00:55:27 +00:00
|
|
|
|
|
|
|
return this;
|
2016-12-07 01:40:56 +00:00
|
|
|
},
|
|
|
|
|
2018-02-12 22:16:18 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.Data.DataManager#remove
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {string} key - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.Data.DataManager} This DataManager object.
|
|
|
|
*/
|
2016-12-07 01:40:56 +00:00
|
|
|
remove: function (key)
|
|
|
|
{
|
|
|
|
if (!this._frozen && this.has(key))
|
|
|
|
{
|
2018-01-30 00:55:27 +00:00
|
|
|
var data = this.list[key];
|
2016-12-07 01:40:56 +00:00
|
|
|
|
2018-01-30 00:55:27 +00:00
|
|
|
delete this.list[key];
|
2016-12-07 01:40:56 +00:00
|
|
|
|
2018-01-30 00:55:27 +00:00
|
|
|
this.events.emit('removedata', this, key, data);
|
2016-12-07 01:40:56 +00:00
|
|
|
}
|
|
|
|
|
2018-01-30 00:55:27 +00:00
|
|
|
return this;
|
2016-12-07 01:40:56 +00:00
|
|
|
},
|
|
|
|
|
2018-02-12 22:16:18 +00:00
|
|
|
/**
|
|
|
|
* Gets the data associated with the given 'key', deletes it from this Data store, then returns it.
|
|
|
|
*
|
|
|
|
* @method Phaser.Data.DataManager#pop
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {string} key - [description]
|
|
|
|
*
|
|
|
|
* @return {any} [description]
|
|
|
|
*/
|
2016-12-07 01:40:56 +00:00
|
|
|
pop: function (key)
|
|
|
|
{
|
|
|
|
var data = undefined;
|
|
|
|
|
|
|
|
if (!this._frozen && this.has(key))
|
|
|
|
{
|
|
|
|
data = this.list[key];
|
|
|
|
|
|
|
|
delete this.list[key];
|
|
|
|
|
2018-01-30 00:55:27 +00:00
|
|
|
this.events.emit('removedata', this, key, data);
|
2016-12-07 01:40:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return data;
|
|
|
|
},
|
|
|
|
|
2018-02-12 22:16:18 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.Data.DataManager#has
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {string} key - [description]
|
|
|
|
*
|
|
|
|
* @return {boolean} [description]
|
|
|
|
*/
|
2016-12-07 01:40:56 +00:00
|
|
|
has: function (key)
|
|
|
|
{
|
|
|
|
return this.list.hasOwnProperty(key);
|
|
|
|
},
|
|
|
|
|
2018-02-12 22:16:18 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.Data.DataManager#setFreeze
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {boolean} value - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.Data.DataManager} This DataManager object.
|
|
|
|
*/
|
2018-01-30 00:55:27 +00:00
|
|
|
setFreeze: function (value)
|
|
|
|
{
|
|
|
|
this._frozen = value;
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2018-02-12 22:16:18 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.Data.DataManager#reset
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @return {Phaser.Data.DataManager} This DataManager object.
|
|
|
|
*/
|
2016-12-07 01:40:56 +00:00
|
|
|
reset: function ()
|
|
|
|
{
|
|
|
|
for (var key in this.list)
|
|
|
|
{
|
|
|
|
delete this.list[key];
|
|
|
|
}
|
|
|
|
|
2018-01-30 00:55:27 +00:00
|
|
|
this.blockSet = false;
|
2016-12-07 01:40:56 +00:00
|
|
|
this._frozen = false;
|
2018-02-12 22:16:18 +00:00
|
|
|
|
|
|
|
return this;
|
2017-06-30 14:47:51 +00:00
|
|
|
},
|
2016-12-07 01:40:56 +00:00
|
|
|
|
2018-02-12 22:16:18 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.Data.DataManager#destroy
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-09-08 00:59:53 +00:00
|
|
|
destroy: function ()
|
|
|
|
{
|
|
|
|
this.reset();
|
|
|
|
|
2018-01-30 00:55:27 +00:00
|
|
|
this.events.off('changedata');
|
|
|
|
this.events.off('setdata');
|
|
|
|
this.events.off('removedata');
|
2017-09-08 00:59:53 +00:00
|
|
|
|
2018-01-30 00:55:27 +00:00
|
|
|
this.parent = null;
|
2017-09-08 00:59:53 +00:00
|
|
|
},
|
|
|
|
|
2016-12-07 01:40:56 +00:00
|
|
|
/**
|
2018-02-12 22:16:18 +00:00
|
|
|
* Freeze this Data component, so no changes can be written to it.
|
|
|
|
*
|
|
|
|
* @name Phaser.Data.DataManager#freeze
|
|
|
|
* @type {boolean}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2016-12-07 01:40:56 +00:00
|
|
|
freeze: {
|
|
|
|
|
|
|
|
get: function ()
|
|
|
|
{
|
|
|
|
return this._frozen;
|
|
|
|
},
|
|
|
|
|
|
|
|
set: function (value)
|
|
|
|
{
|
|
|
|
this._frozen = (value) ? true : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2018-02-12 22:16:18 +00:00
|
|
|
/**
|
|
|
|
* Return the total number of entries in this Data component.
|
|
|
|
*
|
|
|
|
* @name Phaser.Data.DataManager#count
|
|
|
|
* @type {integer}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2016-12-07 01:40:56 +00:00
|
|
|
count: {
|
|
|
|
|
|
|
|
get: function ()
|
|
|
|
{
|
|
|
|
var i = 0;
|
|
|
|
|
|
|
|
for (var key in this.list)
|
|
|
|
{
|
|
|
|
if (this.list[key] !== undefined)
|
|
|
|
{
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2018-01-30 00:55:27 +00:00
|
|
|
module.exports = DataManager;
|