2013-08-28 06:02:55 +00:00
|
|
|
/**
|
2013-10-01 12:54:29 +00:00
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2013 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Phaser.Cache constructor.
|
2013-08-28 06:02:55 +00:00
|
|
|
*
|
2013-12-20 18:27:36 +00:00
|
|
|
* @class Phaser.Cache
|
|
|
|
* @classdesc A game only has one instance of a Cache and it is used to store all externally loaded assets such as images, sounds and data files as a result of Loader calls. Cached items use string based keys for look-up.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @constructor
|
|
|
|
* @param {Phaser.Game} game - A reference to the currently running game.
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
|
|
|
Phaser.Cache = function (game) {
|
2013-09-10 10:09:25 +00:00
|
|
|
|
2013-08-28 06:02:55 +00:00
|
|
|
/**
|
2013-11-25 04:40:04 +00:00
|
|
|
* @property {Phaser.Game} game - Local reference to game.
|
|
|
|
*/
|
|
|
|
this.game = game;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {object} game - Canvas key-value container.
|
|
|
|
* @private
|
|
|
|
*/
|
2013-09-10 19:40:34 +00:00
|
|
|
this._canvases = {};
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
2013-11-25 04:40:04 +00:00
|
|
|
* @property {object} _images - Image key-value container.
|
|
|
|
* @private
|
|
|
|
*/
|
2013-09-10 19:40:34 +00:00
|
|
|
this._images = {};
|
2013-08-28 06:02:55 +00:00
|
|
|
|
2013-09-11 01:57:36 +00:00
|
|
|
/**
|
2013-11-25 04:40:04 +00:00
|
|
|
* @property {object} _textures - RenderTexture key-value container.
|
|
|
|
* @private
|
|
|
|
*/
|
2013-09-11 01:57:36 +00:00
|
|
|
this._textures = {};
|
|
|
|
|
2013-08-28 06:02:55 +00:00
|
|
|
/**
|
2013-11-25 04:40:04 +00:00
|
|
|
* @property {object} _sounds - Sound key-value container.
|
|
|
|
* @private
|
|
|
|
*/
|
2013-09-10 19:40:34 +00:00
|
|
|
this._sounds = {};
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
2013-11-25 04:40:04 +00:00
|
|
|
* @property {object} _text - Text key-value container.
|
|
|
|
* @private
|
|
|
|
*/
|
2013-09-10 19:40:34 +00:00
|
|
|
this._text = {};
|
|
|
|
|
2013-09-12 03:24:01 +00:00
|
|
|
/**
|
2013-11-25 04:40:04 +00:00
|
|
|
* @property {object} _tilemaps - Tilemap key-value container.
|
|
|
|
* @private
|
|
|
|
*/
|
2013-09-12 03:24:01 +00:00
|
|
|
this._tilemaps = {};
|
|
|
|
|
2013-10-11 03:42:11 +00:00
|
|
|
/**
|
2013-12-20 18:27:36 +00:00
|
|
|
* @property {object} _binary - Binary file key-value container.
|
2013-10-11 03:42:11 +00:00
|
|
|
* @private
|
|
|
|
*/
|
2013-12-20 18:27:36 +00:00
|
|
|
this._binary = {};
|
2013-10-01 12:54:29 +00:00
|
|
|
|
2013-11-13 20:57:09 +00:00
|
|
|
/**
|
|
|
|
* @property {object} _bitmapDatas - BitmapData key-value container.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._bitmapDatas = {};
|
|
|
|
|
2013-09-10 19:40:34 +00:00
|
|
|
this.addDefaultImage();
|
2013-11-21 04:59:54 +00:00
|
|
|
this.addMissingImage();
|
2013-09-10 19:40:34 +00:00
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-11-25 04:40:04 +00:00
|
|
|
* @property {Phaser.Signal} onSoundUnlock - This event is dispatched when the sound system is unlocked via a touch event on cellular devices.
|
|
|
|
*/
|
|
|
|
this.onSoundUnlock = new Phaser.Signal();
|
2013-09-11 10:33:27 +00:00
|
|
|
|
2013-09-10 19:40:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Phaser.Cache.prototype = {
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
2013-10-02 14:05:55 +00:00
|
|
|
* Add a new canvas object in to the cache.
|
|
|
|
* @method Phaser.Cache#addCanvas
|
|
|
|
* @param {string} key - Asset key for this canvas.
|
|
|
|
* @param {HTMLCanvasElement} canvas - Canvas DOM element.
|
|
|
|
* @param {CanvasRenderingContext2D} context - Render context of this canvas.
|
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
addCanvas: function (key, canvas, context) {
|
|
|
|
|
|
|
|
this._canvases[key] = { canvas: canvas, context: context };
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-12-20 18:27:36 +00:00
|
|
|
/**
|
|
|
|
* Add a binary object in to the cache.
|
|
|
|
* @method Phaser.Cache#addBinary
|
|
|
|
* @param {string} key - Asset key for this binary data.
|
|
|
|
* @param {object} binaryData - The binary object to be addded to the cache.
|
|
|
|
*/
|
|
|
|
addBinary: function (key, binaryData) {
|
|
|
|
|
|
|
|
this._binary[key] = binaryData;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-11-13 20:57:09 +00:00
|
|
|
/**
|
|
|
|
* Add a BitmapData object in to the cache.
|
|
|
|
* @method Phaser.Cache#addBitmapData
|
|
|
|
* @param {string} key - Asset key for this BitmapData.
|
|
|
|
* @param {Phaser.BitmapData} bitmapData - The BitmapData object to be addded to the cache.
|
|
|
|
* @return {Phaser.BitmapData} The BitmapData object to be addded to the cache.
|
|
|
|
*/
|
|
|
|
addBitmapData: function (key, bitmapData) {
|
|
|
|
|
|
|
|
this._bitmapDatas[key] = bitmapData;
|
|
|
|
|
|
|
|
return bitmapData;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-09-11 01:57:36 +00:00
|
|
|
/**
|
2013-10-02 14:05:55 +00:00
|
|
|
* Add a new Phaser.RenderTexture in to the cache.
|
|
|
|
*
|
|
|
|
* @method Phaser.Cache#addRenderTexture
|
|
|
|
* @param {string} key - The unique key by which you will reference this object.
|
2013-11-13 20:57:09 +00:00
|
|
|
* @param {Phaser.Texture} texture - The texture to use as the base of the RenderTexture.
|
2013-10-02 14:05:55 +00:00
|
|
|
*/
|
2013-09-11 01:57:36 +00:00
|
|
|
addRenderTexture: function (key, texture) {
|
|
|
|
|
2013-10-03 01:38:35 +00:00
|
|
|
var frame = new Phaser.Frame(0, 0, 0, texture.width, texture.height, '', '');
|
2013-09-11 01:57:36 +00:00
|
|
|
|
|
|
|
this._textures[key] = { texture: texture, frame: frame };
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-08-28 06:02:55 +00:00
|
|
|
/**
|
2013-10-02 14:05:55 +00:00
|
|
|
* Add a new sprite sheet in to the cache.
|
|
|
|
*
|
|
|
|
* @method Phaser.Cache#addSpriteSheet
|
|
|
|
* @param {string} key - The unique key by which you will reference this object.
|
|
|
|
* @param {string} url - URL of this sprite sheet file.
|
|
|
|
* @param {object} data - Extra sprite sheet data.
|
|
|
|
* @param {number} frameWidth - Width of the sprite sheet.
|
|
|
|
* @param {number} frameHeight - Height of the sprite sheet.
|
2013-12-13 14:04:14 +00:00
|
|
|
* @param {number} [frameMax=-1] - How many frames stored in the sprite sheet. If -1 then it divides the whole sheet evenly.
|
|
|
|
* @param {number} [margin=0] - If the frames have been drawn with a margin, specify the amount here.
|
|
|
|
* @param {number} [spacing=0] - If the frames have been drawn with spacing between them, specify the amount here.
|
2013-10-02 14:05:55 +00:00
|
|
|
*/
|
2013-12-13 14:04:14 +00:00
|
|
|
addSpriteSheet: function (key, url, data, frameWidth, frameHeight, frameMax, margin, spacing) {
|
2013-08-28 06:02:55 +00:00
|
|
|
|
2013-12-13 14:04:14 +00:00
|
|
|
this._images[key] = { url: url, data: data, spriteSheet: true, frameWidth: frameWidth, frameHeight: frameHeight, margin: margin, spacing: spacing };
|
2013-08-28 06:02:55 +00:00
|
|
|
|
2013-08-30 00:50:17 +00:00
|
|
|
PIXI.BaseTextureCache[key] = new PIXI.BaseTexture(data);
|
2013-08-30 03:20:14 +00:00
|
|
|
PIXI.TextureCache[key] = new PIXI.Texture(PIXI.BaseTextureCache[key]);
|
2013-08-30 00:50:17 +00:00
|
|
|
|
2013-12-13 14:04:14 +00:00
|
|
|
this._images[key].frameData = Phaser.AnimationParser.spriteSheet(this.game, key, frameWidth, frameHeight, frameMax, margin, spacing);
|
2013-08-30 01:18:00 +00:00
|
|
|
|
2013-08-28 06:02:55 +00:00
|
|
|
},
|
|
|
|
|
2013-09-12 03:24:01 +00:00
|
|
|
/**
|
2013-10-02 14:05:55 +00:00
|
|
|
* Add a new tilemap.
|
|
|
|
*
|
|
|
|
* @method Phaser.Cache#addTilemap
|
|
|
|
* @param {string} key - The unique key by which you will reference this object.
|
|
|
|
* @param {string} url - URL of the tilemap image.
|
2013-12-18 16:56:14 +00:00
|
|
|
* @param {object} mapData - The tilemap data object (either a CSV or JSON file).
|
2013-10-02 14:05:55 +00:00
|
|
|
* @param {number} format - The format of the tilemap data.
|
|
|
|
*/
|
2013-10-11 05:30:28 +00:00
|
|
|
addTilemap: function (key, url, mapData, format) {
|
2013-09-12 03:24:01 +00:00
|
|
|
|
2013-10-11 17:18:27 +00:00
|
|
|
this._tilemaps[key] = { url: url, data: mapData, format: format };
|
2013-09-12 03:24:01 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-08-28 06:02:55 +00:00
|
|
|
/**
|
2013-10-02 14:05:55 +00:00
|
|
|
* Add a new texture atlas.
|
|
|
|
*
|
|
|
|
* @method Phaser.Cache#addTextureAtlas
|
|
|
|
* @param {string} key - The unique key by which you will reference this object.
|
|
|
|
* @param {string} url - URL of this texture atlas file.
|
|
|
|
* @param {object} data - Extra texture atlas data.
|
|
|
|
* @param {object} atlasData - Texture atlas frames data.
|
|
|
|
* @param {number} format - The format of the texture atlas.
|
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
addTextureAtlas: function (key, url, data, atlasData, format) {
|
|
|
|
|
|
|
|
this._images[key] = { url: url, data: data, spriteSheet: true };
|
|
|
|
|
2013-08-30 00:50:17 +00:00
|
|
|
PIXI.BaseTextureCache[key] = new PIXI.BaseTexture(data);
|
2013-08-30 03:20:14 +00:00
|
|
|
PIXI.TextureCache[key] = new PIXI.Texture(PIXI.BaseTextureCache[key]);
|
2013-08-30 00:50:17 +00:00
|
|
|
|
2013-08-28 06:02:55 +00:00
|
|
|
if (format == Phaser.Loader.TEXTURE_ATLAS_JSON_ARRAY)
|
|
|
|
{
|
2013-10-03 00:21:08 +00:00
|
|
|
this._images[key].frameData = Phaser.AnimationParser.JSONData(this.game, atlasData, key);
|
2013-08-28 06:02:55 +00:00
|
|
|
}
|
2013-08-29 21:53:55 +00:00
|
|
|
else if (format == Phaser.Loader.TEXTURE_ATLAS_JSON_HASH)
|
|
|
|
{
|
2013-10-03 00:21:08 +00:00
|
|
|
this._images[key].frameData = Phaser.AnimationParser.JSONDataHash(this.game, atlasData, key);
|
2013-08-29 21:53:55 +00:00
|
|
|
}
|
2013-08-28 06:02:55 +00:00
|
|
|
else if (format == Phaser.Loader.TEXTURE_ATLAS_XML_STARLING)
|
|
|
|
{
|
2013-10-03 00:21:08 +00:00
|
|
|
this._images[key].frameData = Phaser.AnimationParser.XMLData(this.game, atlasData, key);
|
2013-08-28 06:02:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-09-10 22:51:35 +00:00
|
|
|
/**
|
2013-10-02 14:05:55 +00:00
|
|
|
* Add a new Bitmap Font.
|
|
|
|
*
|
|
|
|
* @method Phaser.Cache#addBitmapFont
|
|
|
|
* @param {string} key - The unique key by which you will reference this object.
|
|
|
|
* @param {string} url - URL of this font xml file.
|
|
|
|
* @param {object} data - Extra font data.
|
|
|
|
* @param xmlData {object} Texture atlas frames data.
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
addBitmapFont: function (key, url, data, xmlData) {
|
|
|
|
|
|
|
|
this._images[key] = { url: url, data: data, spriteSheet: true };
|
|
|
|
|
|
|
|
PIXI.BaseTextureCache[key] = new PIXI.BaseTexture(data);
|
|
|
|
PIXI.TextureCache[key] = new PIXI.Texture(PIXI.BaseTextureCache[key]);
|
|
|
|
|
2013-10-03 01:38:35 +00:00
|
|
|
Phaser.LoaderParser.bitmapFont(this.game, xmlData, key);
|
2013-10-03 00:21:08 +00:00
|
|
|
// this._images[key].frameData = Phaser.AnimationParser.XMLData(this.game, xmlData, key);
|
2013-09-10 22:51:35 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-09-10 10:09:25 +00:00
|
|
|
/**
|
2013-11-21 04:59:54 +00:00
|
|
|
* Adds a default image to be used in special cases such as WebGL Filters. Is mapped to the key __default.
|
2013-10-02 14:05:55 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Cache#addDefaultImage
|
|
|
|
*/
|
2013-09-10 10:09:25 +00:00
|
|
|
addDefaultImage: function () {
|
|
|
|
|
2013-10-03 22:20:24 +00:00
|
|
|
var img = new Image();
|
2013-11-21 04:59:54 +00:00
|
|
|
img.src = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgAQMAAABJtOi3AAAAA1BMVEX///+nxBvIAAAAAXRSTlMAQObYZgAAABVJREFUeF7NwIEAAAAAgKD9qdeocAMAoAABm3DkcAAAAABJRU5ErkJggg==";
|
2013-09-10 10:09:25 +00:00
|
|
|
|
2013-10-03 22:20:24 +00:00
|
|
|
this._images['__default'] = { url: null, data: img, spriteSheet: false };
|
|
|
|
this._images['__default'].frame = new Phaser.Frame(0, 0, 0, 32, 32, '', '');
|
2013-09-10 10:09:25 +00:00
|
|
|
|
2013-10-03 22:20:24 +00:00
|
|
|
PIXI.BaseTextureCache['__default'] = new PIXI.BaseTexture(img);
|
|
|
|
PIXI.TextureCache['__default'] = new PIXI.Texture(PIXI.BaseTextureCache['__default']);
|
2013-09-10 10:09:25 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-11-21 04:59:54 +00:00
|
|
|
/**
|
|
|
|
* Adds an image to be used when a key is wrong / missing. Is mapped to the key __missing.
|
|
|
|
*
|
|
|
|
* @method Phaser.Cache#addMissingImage
|
|
|
|
*/
|
|
|
|
addMissingImage: function () {
|
|
|
|
|
|
|
|
var img = new Image();
|
|
|
|
img.src = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAIAAAD8GO2jAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJ9JREFUeNq01ssOwyAMRFG46v//Mt1ESmgh+DFmE2GPOBARKb2NVjo+17PXLD8a1+pl5+A+wSgFygymWYHBb0FtsKhJDdZlncG2IzJ4ayoMDv20wTmSMzClEgbWYNTAkQ0Z+OJ+A/eWnAaR9+oxCF4Os0H8htsMUp+pwcgBBiMNnAwF8GqIgL2hAzaGFFgZauDPKABmowZ4GL369/0rwACp2yA/ttmvsQAAAABJRU5ErkJggg==";
|
|
|
|
|
|
|
|
this._images['__missing'] = { url: null, data: img, spriteSheet: false };
|
|
|
|
this._images['__missing'].frame = new Phaser.Frame(0, 0, 0, 32, 32, '', '');
|
|
|
|
|
|
|
|
PIXI.BaseTextureCache['__missing'] = new PIXI.BaseTexture(img);
|
|
|
|
PIXI.TextureCache['__missing'] = new PIXI.Texture(PIXI.BaseTextureCache['__missing']);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-11 03:42:11 +00:00
|
|
|
/**
|
|
|
|
* Add a new text data.
|
|
|
|
*
|
|
|
|
* @method Phaser.Cache#addText
|
|
|
|
* @param {string} key - Asset key for the text data.
|
|
|
|
* @param {string} url - URL of this text data file.
|
|
|
|
* @param {object} data - Extra text data.
|
2013-11-25 04:40:04 +00:00
|
|
|
*/
|
2013-10-11 03:42:11 +00:00
|
|
|
addText: function (key, url, data) {
|
|
|
|
|
|
|
|
this._text[key] = {
|
|
|
|
url: url,
|
|
|
|
data: data
|
|
|
|
};
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-08-28 06:02:55 +00:00
|
|
|
/**
|
2013-10-02 14:05:55 +00:00
|
|
|
* Add a new image.
|
|
|
|
*
|
|
|
|
* @method Phaser.Cache#addImage
|
|
|
|
* @param {string} key - The unique key by which you will reference this object.
|
|
|
|
* @param {string} url - URL of this image file.
|
|
|
|
* @param {object} data - Extra image data.
|
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
addImage: function (key, url, data) {
|
|
|
|
|
|
|
|
this._images[key] = { url: url, data: data, spriteSheet: false };
|
2013-10-24 20:21:00 +00:00
|
|
|
|
|
|
|
this._images[key].frame = new Phaser.Frame(0, 0, 0, data.width, data.height, key, this.game.rnd.uuid());
|
2013-08-28 06:02:55 +00:00
|
|
|
|
2013-08-30 00:50:17 +00:00
|
|
|
PIXI.BaseTextureCache[key] = new PIXI.BaseTexture(data);
|
2013-08-30 03:20:14 +00:00
|
|
|
PIXI.TextureCache[key] = new PIXI.Texture(PIXI.BaseTextureCache[key]);
|
2013-08-30 00:50:17 +00:00
|
|
|
|
2013-08-28 06:02:55 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2013-10-02 14:05:55 +00:00
|
|
|
* Add a new sound.
|
|
|
|
*
|
|
|
|
* @method Phaser.Cache#addSound
|
|
|
|
* @param {string} key - Asset key for the sound.
|
|
|
|
* @param {string} url - URL of this sound file.
|
|
|
|
* @param {object} data - Extra sound data.
|
|
|
|
* @param {boolean} webAudio - True if the file is using web audio.
|
|
|
|
* @param {boolean} audioTag - True if the file is using legacy HTML audio.
|
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
addSound: function (key, url, data, webAudio, audioTag) {
|
|
|
|
|
2013-09-03 16:07:05 +00:00
|
|
|
webAudio = webAudio || true;
|
|
|
|
audioTag = audioTag || false;
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
var decoded = false;
|
|
|
|
|
2013-09-11 01:57:36 +00:00
|
|
|
if (audioTag)
|
|
|
|
{
|
2013-08-28 06:02:55 +00:00
|
|
|
decoded = true;
|
|
|
|
}
|
|
|
|
|
2013-12-31 03:37:11 +00:00
|
|
|
this._sounds[key] = { url: url, data: data, isDecoding: false, decoded: decoded, webAudio: webAudio, audioTag: audioTag, locked: this.game.sound.touchLocked };
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-10-02 14:05:55 +00:00
|
|
|
* Reload a sound.
|
2013-12-13 14:04:14 +00:00
|
|
|
*
|
2013-10-02 14:05:55 +00:00
|
|
|
* @method Phaser.Cache#reloadSound
|
|
|
|
* @param {string} key - Asset key for the sound.
|
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
reloadSound: function (key) {
|
|
|
|
|
|
|
|
var _this = this;
|
|
|
|
|
2013-09-11 01:57:36 +00:00
|
|
|
if (this._sounds[key])
|
|
|
|
{
|
2013-08-28 06:02:55 +00:00
|
|
|
this._sounds[key].data.src = this._sounds[key].url;
|
|
|
|
|
|
|
|
this._sounds[key].data.addEventListener('canplaythrough', function () {
|
|
|
|
return _this.reloadSoundComplete(key);
|
|
|
|
}, false);
|
|
|
|
|
|
|
|
this._sounds[key].data.load();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-12-13 14:04:14 +00:00
|
|
|
* Fires the onSoundUnlock event when the sound has completed reloading.
|
|
|
|
*
|
2013-10-02 14:05:55 +00:00
|
|
|
* @method Phaser.Cache#reloadSoundComplete
|
|
|
|
* @param {string} key - Asset key for the sound.
|
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
reloadSoundComplete: function (key) {
|
|
|
|
|
2013-09-11 01:57:36 +00:00
|
|
|
if (this._sounds[key])
|
|
|
|
{
|
2013-08-28 06:02:55 +00:00
|
|
|
this._sounds[key].locked = false;
|
|
|
|
this.onSoundUnlock.dispatch(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-12-13 14:04:14 +00:00
|
|
|
* Updates the sound object in the cache.
|
|
|
|
*
|
2013-10-02 14:05:55 +00:00
|
|
|
* @method Phaser.Cache#updateSound
|
|
|
|
* @param {string} key - Asset key for the sound.
|
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
updateSound: function (key, property, value) {
|
|
|
|
|
2013-09-11 01:57:36 +00:00
|
|
|
if (this._sounds[key])
|
|
|
|
{
|
2013-08-28 06:02:55 +00:00
|
|
|
this._sounds[key][property] = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* Add a new decoded sound.
|
2013-10-02 14:05:55 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Cache#decodedSound
|
2013-11-25 04:40:04 +00:00
|
|
|
* @param {string} key - Asset key for the sound.
|
|
|
|
* @param {object} data - Extra sound data.
|
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
decodedSound: function (key, data) {
|
|
|
|
|
|
|
|
this._sounds[key].data = data;
|
|
|
|
this._sounds[key].decoded = true;
|
|
|
|
this._sounds[key].isDecoding = false;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* Get a canvas object from the cache by its key.
|
2013-10-02 14:05:55 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Cache#getCanvas
|
2013-12-20 18:27:36 +00:00
|
|
|
* @param {string} key - Asset key of the canvas to retrieve from the Cache.
|
|
|
|
* @return {object} The canvas object.
|
2013-11-25 04:40:04 +00:00
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
getCanvas: function (key) {
|
|
|
|
|
2013-09-11 01:57:36 +00:00
|
|
|
if (this._canvases[key])
|
|
|
|
{
|
2013-08-28 06:02:55 +00:00
|
|
|
return this._canvases[key].canvas;
|
|
|
|
}
|
2013-12-10 12:23:42 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
console.warn('Phaser.Cache.getCanvas: Invalid key: "' + key + '"');
|
|
|
|
}
|
2013-11-13 20:57:09 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a BitmapData object from the cache by its key.
|
|
|
|
*
|
|
|
|
* @method Phaser.Cache#getBitmapData
|
2013-12-20 18:27:36 +00:00
|
|
|
* @param {string} key - Asset key of the BitmapData object to retrieve from the Cache.
|
2013-11-13 20:57:09 +00:00
|
|
|
* @return {Phaser.BitmapData} The requested BitmapData object if found, or null if not.
|
|
|
|
*/
|
|
|
|
getBitmapData: function (key) {
|
|
|
|
|
|
|
|
if (this._bitmapDatas[key])
|
|
|
|
{
|
|
|
|
return this._bitmapDatas[key];
|
|
|
|
}
|
2013-12-10 12:23:42 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
console.warn('Phaser.Cache.getBitmapData: Invalid key: "' + key + '"');
|
|
|
|
}
|
2013-11-13 20:57:09 +00:00
|
|
|
|
2013-08-28 06:02:55 +00:00
|
|
|
},
|
|
|
|
|
2013-09-10 10:09:25 +00:00
|
|
|
/**
|
|
|
|
* Checks if an image key exists.
|
2013-10-02 14:05:55 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Cache#checkImageKey
|
2013-12-20 18:27:36 +00:00
|
|
|
* @param {string} key - Asset key of the image to check is in the Cache.
|
2013-10-01 15:39:39 +00:00
|
|
|
* @return {boolean} True if the key exists, otherwise false.
|
2013-11-25 04:40:04 +00:00
|
|
|
*/
|
2013-09-10 10:09:25 +00:00
|
|
|
checkImageKey: function (key) {
|
|
|
|
|
|
|
|
if (this._images[key])
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* Get image data by key.
|
2013-10-02 14:05:55 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Cache#getImage
|
2013-12-20 18:27:36 +00:00
|
|
|
* @param {string} key - Asset key of the image to retrieve from the Cache.
|
|
|
|
* @return {object} The image data.
|
2013-11-25 04:40:04 +00:00
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
getImage: function (key) {
|
|
|
|
|
2013-09-11 01:57:36 +00:00
|
|
|
if (this._images[key])
|
|
|
|
{
|
2013-08-28 06:02:55 +00:00
|
|
|
return this._images[key].data;
|
|
|
|
}
|
2013-12-10 12:23:42 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
console.warn('Phaser.Cache.getImage: Invalid key: "' + key + '"');
|
|
|
|
}
|
2013-11-13 20:57:09 +00:00
|
|
|
|
2013-08-28 06:02:55 +00:00
|
|
|
},
|
|
|
|
|
2013-09-12 03:24:01 +00:00
|
|
|
/**
|
|
|
|
* Get tilemap data by key.
|
2013-10-02 14:05:55 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Cache#getTilemap
|
2013-12-20 18:27:36 +00:00
|
|
|
* @param {string} key - Asset key of the tilemap data to retrieve from the Cache.
|
|
|
|
* @return {Object} The raw tilemap data in CSV or JSON format.
|
2013-09-12 03:24:01 +00:00
|
|
|
*/
|
2013-10-11 17:18:27 +00:00
|
|
|
getTilemapData: function (key) {
|
2013-09-12 03:24:01 +00:00
|
|
|
|
|
|
|
if (this._tilemaps[key])
|
|
|
|
{
|
|
|
|
return this._tilemaps[key];
|
|
|
|
}
|
2013-12-10 12:23:42 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
console.warn('Phaser.Cache.getTilemapData: Invalid key: "' + key + '"');
|
|
|
|
}
|
2013-09-12 03:24:01 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* Get frame data by key.
|
2013-10-02 14:05:55 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Cache#getFrameData
|
2013-12-20 18:27:36 +00:00
|
|
|
* @param {string} key - Asset key of the frame data to retrieve from the Cache.
|
|
|
|
* @return {Phaser.FrameData} The frame data.
|
2013-11-25 04:40:04 +00:00
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
getFrameData: function (key) {
|
|
|
|
|
2013-09-11 01:57:36 +00:00
|
|
|
if (this._images[key] && this._images[key].frameData)
|
|
|
|
{
|
2013-08-28 06:02:55 +00:00
|
|
|
return this._images[key].frameData;
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
|
2013-09-11 16:32:53 +00:00
|
|
|
/**
|
|
|
|
* Get a single frame out of a frameData set by key.
|
2013-10-02 14:05:55 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Cache#getFrameByIndex
|
2013-12-20 18:27:36 +00:00
|
|
|
* @param {string} key - Asset key of the frame data to retrieve from the Cache.
|
|
|
|
* @return {Phaser.Frame} The frame object.
|
2013-09-11 16:32:53 +00:00
|
|
|
*/
|
|
|
|
getFrameByIndex: function (key, frame) {
|
|
|
|
|
|
|
|
if (this._images[key] && this._images[key].frameData)
|
|
|
|
{
|
|
|
|
return this._images[key].frameData.getFrame(frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a single frame out of a frameData set by key.
|
2013-10-02 14:05:55 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Cache#getFrameByName
|
2013-12-20 18:27:36 +00:00
|
|
|
* @param {string} key - Asset key of the frame data to retrieve from the Cache.
|
|
|
|
* @return {Phaser.Frame} The frame object.
|
2013-09-11 16:32:53 +00:00
|
|
|
*/
|
|
|
|
getFrameByName: function (key, frame) {
|
|
|
|
|
|
|
|
if (this._images[key] && this._images[key].frameData)
|
|
|
|
{
|
|
|
|
return this._images[key].frameData.getFrameByName(frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
|
2013-09-03 16:07:05 +00:00
|
|
|
/**
|
|
|
|
* Get a single frame by key. You'd only do this to get the default Frame created for a non-atlas/spritesheet image.
|
2013-10-02 14:05:55 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Cache#getFrame
|
2013-12-20 18:27:36 +00:00
|
|
|
* @param {string} key - Asset key of the frame data to retrieve from the Cache.
|
|
|
|
* @return {Phaser.Frame} The frame data.
|
2013-09-03 16:07:05 +00:00
|
|
|
*/
|
|
|
|
getFrame: function (key) {
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
if (this._images[key] && this._images[key].spriteSheet === false)
|
2013-09-03 16:07:05 +00:00
|
|
|
{
|
|
|
|
return this._images[key].frame;
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
|
2013-09-11 01:57:36 +00:00
|
|
|
/**
|
2013-12-20 18:27:36 +00:00
|
|
|
* Get a single texture frame by key. You'd only do this to get the default Frame created for a non-atlas/spritesheet image.
|
2013-10-02 14:05:55 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Cache#getTextureFrame
|
2013-12-20 18:27:36 +00:00
|
|
|
* @param {string} key - Asset key of the frame to retrieve from the Cache.
|
|
|
|
* @return {Phaser.Frame} The frame data.
|
2013-09-11 01:57:36 +00:00
|
|
|
*/
|
|
|
|
getTextureFrame: function (key) {
|
|
|
|
|
|
|
|
if (this._textures[key])
|
|
|
|
{
|
|
|
|
return this._textures[key].frame;
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a RenderTexture by key.
|
2013-10-02 14:05:55 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Cache#getTexture
|
2013-12-20 18:27:36 +00:00
|
|
|
* @param {string} key - Asset key of the RenderTexture to retrieve from the Cache.
|
|
|
|
* @return {Phaser.RenderTexture} The RenderTexture object.
|
2013-09-11 01:57:36 +00:00
|
|
|
*/
|
|
|
|
getTexture: function (key) {
|
|
|
|
|
|
|
|
if (this._textures[key])
|
|
|
|
{
|
|
|
|
return this._textures[key];
|
|
|
|
}
|
2013-12-10 12:23:42 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
console.warn('Phaser.Cache.getTexture: Invalid key: "' + key + '"');
|
|
|
|
}
|
2013-09-11 01:57:36 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* Get sound by key.
|
2013-10-02 14:05:55 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Cache#getSound
|
2013-12-20 18:27:36 +00:00
|
|
|
* @param {string} key - Asset key of the sound to retrieve from the Cache.
|
|
|
|
* @return {Phaser.Sound} The sound object.
|
2013-11-25 04:40:04 +00:00
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
getSound: function (key) {
|
|
|
|
|
2013-09-11 01:57:36 +00:00
|
|
|
if (this._sounds[key])
|
|
|
|
{
|
2013-08-28 06:02:55 +00:00
|
|
|
return this._sounds[key];
|
|
|
|
}
|
2013-12-10 12:23:42 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
console.warn('Phaser.Cache.getSound: Invalid key: "' + key + '"');
|
|
|
|
}
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* Get sound data by key.
|
2013-10-02 14:05:55 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Cache#getSoundData
|
2013-12-20 18:27:36 +00:00
|
|
|
* @param {string} key - Asset key of the sound to retrieve from the Cache.
|
|
|
|
* @return {object} The sound data.
|
2013-11-25 04:40:04 +00:00
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
getSoundData: function (key) {
|
|
|
|
|
2013-09-11 01:57:36 +00:00
|
|
|
if (this._sounds[key])
|
|
|
|
{
|
2013-08-28 06:02:55 +00:00
|
|
|
return this._sounds[key].data;
|
|
|
|
}
|
2013-12-10 12:23:42 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
console.warn('Phaser.Cache.getSoundData: Invalid key: "' + key + '"');
|
|
|
|
}
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* Check if the given sound has finished decoding.
|
2013-10-02 14:05:55 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Cache#isSoundDecoded
|
2013-12-20 18:27:36 +00:00
|
|
|
* @param {string} key - Asset key of the sound in the Cache.
|
2013-11-25 04:40:04 +00:00
|
|
|
* @return {boolean} The decoded state of the Sound object.
|
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
isSoundDecoded: function (key) {
|
|
|
|
|
2013-09-11 01:57:36 +00:00
|
|
|
if (this._sounds[key])
|
|
|
|
{
|
2013-08-28 06:02:55 +00:00
|
|
|
return this._sounds[key].decoded;
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* Check if the given sound is ready for playback. A sound is considered ready when it has finished decoding and the device is no longer touch locked.
|
2013-10-02 14:05:55 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Cache#isSoundReady
|
2013-12-20 18:27:36 +00:00
|
|
|
* @param {string} key - Asset key of the sound in the Cache.
|
2013-11-25 04:40:04 +00:00
|
|
|
* @return {boolean} True if the sound is decoded and the device is not touch locked.
|
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
isSoundReady: function (key) {
|
2013-09-10 15:46:39 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
return (this._sounds[key] && this._sounds[key].decoded && this.game.sound.touchLocked === false);
|
2013-09-10 15:46:39 +00:00
|
|
|
|
2013-08-28 06:02:55 +00:00
|
|
|
},
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* Check whether an image asset is sprite sheet or not.
|
2013-10-02 14:05:55 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Cache#isSpriteSheet
|
2013-11-25 04:40:04 +00:00
|
|
|
* @param {string} key - Asset key of the sprite sheet you want.
|
|
|
|
* @return {boolean} True if the image is a sprite sheet.
|
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
isSpriteSheet: function (key) {
|
|
|
|
|
2013-09-11 01:57:36 +00:00
|
|
|
if (this._images[key])
|
|
|
|
{
|
2013-08-28 06:02:55 +00:00
|
|
|
return this._images[key].spriteSheet;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* Get text data by key.
|
2013-10-02 14:05:55 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Cache#getText
|
2013-12-20 18:27:36 +00:00
|
|
|
* @param {string} key - Asset key of the text data to retrieve from the Cache.
|
|
|
|
* @return {object} The text data.
|
2013-11-25 04:40:04 +00:00
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
getText: function (key) {
|
|
|
|
|
2013-09-11 01:57:36 +00:00
|
|
|
if (this._text[key])
|
|
|
|
{
|
2013-08-28 06:02:55 +00:00
|
|
|
return this._text[key].data;
|
|
|
|
}
|
2013-12-10 12:23:42 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
console.warn('Phaser.Cache.getText: Invalid key: "' + key + '"');
|
|
|
|
}
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-12-20 18:27:36 +00:00
|
|
|
/**
|
|
|
|
* Get binary data by key.
|
|
|
|
*
|
|
|
|
* @method Phaser.Cache#getBinary
|
|
|
|
* @param {string} key - Asset key of the binary data object to retrieve from the Cache.
|
|
|
|
* @return {object} The binary data object.
|
|
|
|
*/
|
|
|
|
getBinary: function (key) {
|
|
|
|
|
|
|
|
if (this._binary[key])
|
|
|
|
{
|
|
|
|
return this._binary[key];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
console.warn('Phaser.Cache.getBinary: Invalid key: "' + key + '"');
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-02 14:05:55 +00:00
|
|
|
/**
|
|
|
|
* Get the cache keys from a given array of objects.
|
|
|
|
* Normally you don't call this directly but instead use getImageKeys, getSoundKeys, etc.
|
|
|
|
*
|
|
|
|
* @method Phaser.Cache#getKeys
|
|
|
|
* @param {Array} array - An array of items to return the keys for.
|
|
|
|
* @return {Array} The array of item keys.
|
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
getKeys: function (array) {
|
|
|
|
|
|
|
|
var output = [];
|
|
|
|
|
2013-09-10 11:46:14 +00:00
|
|
|
for (var item in array)
|
|
|
|
{
|
2013-12-03 02:13:57 +00:00
|
|
|
if (item !== '__default' && item !== '__missing')
|
2013-09-10 11:46:14 +00:00
|
|
|
{
|
|
|
|
output.push(item);
|
|
|
|
}
|
2013-08-28 06:02:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return output;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* Returns an array containing all of the keys of Images in the Cache.
|
2013-10-02 14:05:55 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Cache#getImageKeys
|
2013-11-25 04:40:04 +00:00
|
|
|
* @return {Array} The string based keys in the Cache.
|
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
getImageKeys: function () {
|
2013-11-25 04:40:04 +00:00
|
|
|
return this.getKeys(this._images);
|
2013-08-28 06:02:55 +00:00
|
|
|
},
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* Returns an array containing all of the keys of Sounds in the Cache.
|
2013-10-02 14:05:55 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Cache#getSoundKeys
|
2013-11-25 04:40:04 +00:00
|
|
|
* @return {Array} The string based keys in the Cache.
|
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
getSoundKeys: function () {
|
2013-11-25 04:40:04 +00:00
|
|
|
return this.getKeys(this._sounds);
|
2013-08-28 06:02:55 +00:00
|
|
|
},
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* Returns an array containing all of the keys of Text Files in the Cache.
|
2013-10-02 14:05:55 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Cache#getTextKeys
|
2013-11-25 04:40:04 +00:00
|
|
|
* @return {Array} The string based keys in the Cache.
|
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
getTextKeys: function () {
|
2013-11-25 04:40:04 +00:00
|
|
|
return this.getKeys(this._text);
|
2013-08-28 06:02:55 +00:00
|
|
|
},
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* Removes a canvas from the cache.
|
2013-10-02 14:05:55 +00:00
|
|
|
*
|
2013-11-25 04:40:04 +00:00
|
|
|
* @method Phaser.Cache#removeCanvas
|
2013-10-02 14:05:55 +00:00
|
|
|
* @param {string} key - Key of the asset you want to remove.
|
2013-11-25 04:40:04 +00:00
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
removeCanvas: function (key) {
|
|
|
|
delete this._canvases[key];
|
|
|
|
},
|
|
|
|
|
2013-10-02 14:05:55 +00:00
|
|
|
/**
|
|
|
|
* Removes an image from the cache.
|
|
|
|
*
|
|
|
|
* @method Phaser.Cache#removeImage
|
|
|
|
* @param {string} key - Key of the asset you want to remove.
|
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
removeImage: function (key) {
|
|
|
|
delete this._images[key];
|
|
|
|
},
|
|
|
|
|
2013-10-02 14:05:55 +00:00
|
|
|
/**
|
|
|
|
* Removes a sound from the cache.
|
|
|
|
*
|
|
|
|
* @method Phaser.Cache#removeSound
|
|
|
|
* @param {string} key - Key of the asset you want to remove.
|
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
removeSound: function (key) {
|
|
|
|
delete this._sounds[key];
|
|
|
|
},
|
|
|
|
|
2013-10-02 14:05:55 +00:00
|
|
|
/**
|
|
|
|
* Removes a text from the cache.
|
|
|
|
*
|
|
|
|
* @method Phaser.Cache#removeText
|
|
|
|
* @param {string} key - Key of the asset you want to remove.
|
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
removeText: function (key) {
|
|
|
|
delete this._text[key];
|
|
|
|
},
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* Clears the cache. Removes every local cache object reference.
|
2013-10-02 14:05:55 +00:00
|
|
|
*
|
2013-11-25 04:40:04 +00:00
|
|
|
* @method Phaser.Cache#destroy
|
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
destroy: function () {
|
|
|
|
|
2013-09-11 01:57:36 +00:00
|
|
|
for (var item in this._canvases)
|
|
|
|
{
|
2013-08-28 06:02:55 +00:00
|
|
|
delete this._canvases[item['key']];
|
|
|
|
}
|
|
|
|
|
2013-09-11 01:57:36 +00:00
|
|
|
for (var item in this._images)
|
|
|
|
{
|
2013-08-28 06:02:55 +00:00
|
|
|
delete this._images[item['key']];
|
|
|
|
}
|
|
|
|
|
2013-09-11 01:57:36 +00:00
|
|
|
for (var item in this._sounds)
|
|
|
|
{
|
2013-08-28 06:02:55 +00:00
|
|
|
delete this._sounds[item['key']];
|
|
|
|
}
|
|
|
|
|
2013-09-11 01:57:36 +00:00
|
|
|
for (var item in this._text)
|
|
|
|
{
|
2013-08-28 06:02:55 +00:00
|
|
|
delete this._text[item['key']];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
2013-12-30 16:54:00 +00:00
|
|
|
|
|
|
|
Phaser.Cache.prototype.constructor = Phaser.Cache;
|