phaser/src/data/DataManager.js
Hua f16cf72826 Fix bug
Copy value of key, instead of the reference of data object
2018-03-16 16:57:25 +08:00

421 lines
9 KiB
JavaScript

/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2018 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
var Class = require('../utils/Class');
/**
* @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]
*/
var DataManager = new Class({
initialize:
function DataManager (parent, eventEmitter)
{
/**
* [description]
*
* @name Phaser.Data.DataManager#parent
* @type {any}
* @since 3.0.0
*/
this.parent = parent;
/**
* [description]
*
* @name Phaser.Data.DataManager#events
* @type {EventEmitter}
* @since 3.0.0
*/
this.events = eventEmitter;
if (!eventEmitter)
{
this.events = (parent.events) ? parent.events : parent;
}
/**
* [description]
*
* @name Phaser.Data.DataManager#list
* @type {object}
* @default {}
* @since 3.0.0
*/
this.list = {};
/**
* [description]
*
* @name Phaser.Data.DataManager#blockSet
* @type {boolean}
* @default false
* @since 3.0.0
*/
this.blockSet = false;
/**
* [description]
*
* @name Phaser.Data.DataManager#_frozen
* @type {boolean}
* @private
* @default false
* @since 3.0.0
*/
this._frozen = false;
this.events.once('destroy', this.destroy, this);
},
/**
* 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]
*/
get: function (key)
{
return this.list[key];
},
/**
* [description]
*
* @method Phaser.Data.DataManager#getAll
* @since 3.0.0
*
* @return {object} [description]
*/
getAll: function ()
{
var results = {};
for (var key in this.list)
{
results[key] = this.list[key];
}
return results;
},
/**
* [description]
*
* @method Phaser.Data.DataManager#query
* @since 3.0.0
*
* @param {string} search - [description]
*
* @return {object} [description]
*/
query: function (search)
{
var results = {};
for (var key in this.list)
{
if (key.match(search))
{
results[key] = this.list[key];
}
}
return results;
},
/**
* [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.
*/
set: function (key, data)
{
if (this._frozen)
{
return this;
}
if (this.events.listenerCount('changedata') > 0)
{
this.blockSet = false;
var _this = this;
var resetFunction = function (value)
{
_this.blockSet = true;
_this.list[key] = value;
_this.events.emit('setdata', _this.parent, key, value);
};
this.events.emit('changedata', this.parent, key, data, resetFunction);
// One of the listeners blocked this update from being set, so abort
if (this.blockSet)
{
return this;
}
}
this.list[key] = data;
this.events.emit('setdata', this.parent, key, data);
return this;
},
/**
* 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.
*/
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);
}
return this;
},
/**
* [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.
*/
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)))
{
this.list[key] = data[key];
}
}
return this;
},
/**
* [description]
*
* @method Phaser.Data.DataManager#remove
* @since 3.0.0
*
* @param {string} key - [description]
*
* @return {Phaser.Data.DataManager} This DataManager object.
*/
remove: function (key)
{
if (!this._frozen && this.has(key))
{
var data = this.list[key];
delete this.list[key];
this.events.emit('removedata', this, key, data);
}
return this;
},
/**
* 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]
*/
pop: function (key)
{
var data = undefined;
if (!this._frozen && this.has(key))
{
data = this.list[key];
delete this.list[key];
this.events.emit('removedata', this, key, data);
}
return data;
},
/**
* [description]
*
* @method Phaser.Data.DataManager#has
* @since 3.0.0
*
* @param {string} key - [description]
*
* @return {boolean} [description]
*/
has: function (key)
{
return this.list.hasOwnProperty(key);
},
/**
* [description]
*
* @method Phaser.Data.DataManager#setFreeze
* @since 3.0.0
*
* @param {boolean} value - [description]
*
* @return {Phaser.Data.DataManager} This DataManager object.
*/
setFreeze: function (value)
{
this._frozen = value;
return this;
},
/**
* [description]
*
* @method Phaser.Data.DataManager#reset
* @since 3.0.0
*
* @return {Phaser.Data.DataManager} This DataManager object.
*/
reset: function ()
{
for (var key in this.list)
{
delete this.list[key];
}
this.blockSet = false;
this._frozen = false;
return this;
},
/**
* [description]
*
* @method Phaser.Data.DataManager#destroy
* @since 3.0.0
*/
destroy: function ()
{
this.reset();
this.events.off('changedata');
this.events.off('setdata');
this.events.off('removedata');
this.parent = null;
},
/**
* Freeze this Data component, so no changes can be written to it.
*
* @name Phaser.Data.DataManager#freeze
* @type {boolean}
* @since 3.0.0
*/
freeze: {
get: function ()
{
return this._frozen;
},
set: function (value)
{
this._frozen = (value) ? true : false;
}
},
/**
* Return the total number of entries in this Data component.
*
* @name Phaser.Data.DataManager#count
* @type {integer}
* @since 3.0.0
*/
count: {
get: function ()
{
var i = 0;
for (var key in this.list)
{
if (this.list[key] !== undefined)
{
i++;
}
}
return i;
}
}
});
module.exports = DataManager;