phaser/Phaser/loader/Cache.ts

293 lines
7.7 KiB
TypeScript
Raw Normal View History

2013-05-25 03:21:24 +00:00
/// <reference path="../Game.ts" />
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
/**
2013-04-18 15:49:08 +00:00
* Phaser - Cache
*
* 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. Cache items use string based keys for look-up.
2013-04-18 13:16:18 +00:00
*/
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
module Phaser {
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
export class Cache {
2013-04-12 16:19:56 +00:00
/**
* Cache constructor
*/
2013-04-18 13:16:18 +00:00
constructor(game: Game) {
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
this._game = game;
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
this._canvases = {};
this._images = {};
this._sounds = {};
this._text = {};
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
}
2013-04-12 16:19:56 +00:00
/**
* Local private reference to game.
*/
2013-04-18 13:16:18 +00:00
private _game: Game;
2013-04-12 16:19:56 +00:00
/**
* Canvas key-value container.
* @type {object}
*/
2013-04-18 13:16:18 +00:00
private _canvases;
2013-05-25 03:21:24 +00:00
/**
* Image key-value container.
* @type {object}
*/
2013-04-18 13:16:18 +00:00
private _images;
2013-05-25 03:21:24 +00:00
/**
* Sound key-value container.
* @type {object}
*/
2013-04-18 13:16:18 +00:00
private _sounds;
2013-05-25 03:21:24 +00:00
/**
* Text key-value container.
* @type {object}
*/
2013-04-18 13:16:18 +00:00
private _text;
2013-04-12 16:19:56 +00:00
/**
* Add a new canvas.
* @param key {string} Asset key for this canvas.
* @param canvas {HTMLCanvasElement} Canvas DOM element.
* @param context {CanvasRenderingContext2D} Render context of this canvas.
*/
2013-04-18 13:16:18 +00:00
public addCanvas(key: string, canvas: HTMLCanvasElement, context: CanvasRenderingContext2D) {
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
this._canvases[key] = { canvas: canvas, context: context };
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
}
2013-04-12 16:19:56 +00:00
/**
* Add a new sprite sheet.
* @param key {string} Asset key for the sprite sheet.
* @param url {string} URL of this sprite sheet file.
* @param data {object} Extra sprite sheet data.
* @param frameWidth {number} Width of the sprite sheet.
* @param frameHeight {number} Height of the sprite sheet.
* @param frameMax {number} How many frames stored in the sprite sheet.
*/
2013-04-18 13:16:18 +00:00
public addSpriteSheet(key: string, url: string, data, frameWidth: number, frameHeight: number, frameMax: number) {
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
this._images[key] = { url: url, data: data, spriteSheet: true, frameWidth: frameWidth, frameHeight: frameHeight };
this._images[key].frameData = AnimationLoader.parseSpriteSheet(this._game, key, frameWidth, frameHeight, frameMax);
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
}
2013-04-12 16:19:56 +00:00
/**
* Add a new texture atlas.
* @param key {string} Asset key for the texture atlas.
* @param url {string} URL of this texture atlas file.
* @param data {object} Extra texture atlas data.
* @param atlasData {object} Texture atlas frames data.
*/
public addTextureAtlas(key: string, url: string, data, atlasData, format) {
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
this._images[key] = { url: url, data: data, spriteSheet: true };
if (format == Phaser.Loader.TEXTURE_ATLAS_JSON_ARRAY)
{
this._images[key].frameData = AnimationLoader.parseJSONData(this._game, atlasData);
}
else if (format == Phaser.Loader.TEXTURE_ATLAS_XML_STARLING)
{
this._images[key].frameData = AnimationLoader.parseXMLData(this._game, atlasData, format);
}
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
}
2013-04-12 16:19:56 +00:00
/**
* Add a new image.
* @param key {string} Asset key for the image.
* @param url {string} URL of this image file.
* @param data {object} Extra image data.
*/
2013-04-18 13:16:18 +00:00
public addImage(key: string, url: string, data) {
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
this._images[key] = { url: url, data: data, spriteSheet: false };
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
}
2013-04-12 16:19:56 +00:00
/**
* Add a new sound.
* @param key {string} Asset key for the sound.
* @param url {string} URL of this sound file.
* @param data {object} Extra sound data.
*/
2013-04-18 13:16:18 +00:00
public addSound(key: string, url: string, data) {
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
this._sounds[key] = { url: url, data: data, decoded: false };
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
}
2013-04-12 16:19:56 +00:00
/**
* Add a new decoded sound.
* @param key {string} Asset key for the sound.
* @param url {string} URL of this sound file.
* @param data {object} Extra sound data.
*/
2013-04-18 13:16:18 +00:00
public decodedSound(key: string, data) {
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
this._sounds[key].data = data;
this._sounds[key].decoded = true;
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
}
/**
* Add a new text data.
* @param key {string} Asset key for the text data.
* @param url {string} URL of this text data file.
* @param data {object} Extra text data.
*/
2013-04-18 13:16:18 +00:00
public addText(key: string, url: string, data) {
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
this._text[key] = { url: url, data: data };
2013-04-12 16:19:56 +00:00
}
/**
* Get canvas by key.
* @param key Asset key of the canvas you want.
* @return {object} The canvas you want.
*/
2013-04-18 13:16:18 +00:00
public getCanvas(key: string) {
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
if (this._canvases[key])
{
return this._canvases[key].canvas;
}
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
return null;
2013-04-12 16:19:56 +00:00
}
/**
* Get image data by key.
* @param key Asset key of the image you want.
* @return {object} The image data you want.
*/
2013-04-18 13:16:18 +00:00
public getImage(key: string) {
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
if (this._images[key])
{
return this._images[key].data;
}
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
return null;
2013-04-12 16:19:56 +00:00
}
/**
* Get frame data by key.
* @param key Asset key of the frame data you want.
* @return {object} The frame data you want.
*/
2013-04-18 13:16:18 +00:00
public getFrameData(key: string): FrameData {
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
if (this._images[key] && this._images[key].spriteSheet == true)
{
return this._images[key].frameData;
}
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
return null;
2013-04-12 16:19:56 +00:00
}
/**
* Get sound data by key.
* @param key Asset key of the sound you want.
* @return {object} The sound data you want.
*/
2013-04-18 13:16:18 +00:00
public getSound(key: string) {
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
if (this._sounds[key])
{
return this._sounds[key].data;
}
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
return null;
2013-04-12 16:19:56 +00:00
}
/**
* Check whether an asset is decoded sound.
* @param key Asset key of the sound you want.
* @return {object} The sound data you want.
*/
2013-04-18 13:16:18 +00:00
public isSoundDecoded(key: string): bool {
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
if (this._sounds[key])
{
return this._sounds[key].decoded;
}
2013-04-12 16:19:56 +00:00
}
/**
* Check whether an asset is sprite sheet.
* @param key Asset key of the sprite sheet you want.
* @return {object} The sprite sheet data you want.
*/
2013-04-18 13:16:18 +00:00
public isSpriteSheet(key: string): bool {
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
if (this._images[key])
{
return this._images[key].spriteSheet;
}
2013-04-12 16:19:56 +00:00
}
/**
* Get text data by key.
* @param key Asset key of the text data you want.
* @return {object} The text data you want.
*/
2013-04-18 13:16:18 +00:00
public getText(key: string) {
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
if (this._text[key])
{
return this._text[key].data;
}
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
return null;
2013-04-12 16:19:56 +00:00
}
/**
* Clean up cache memory.
*/
2013-04-18 13:16:18 +00:00
public destroy() {
2013-04-12 16:19:56 +00:00
2013-04-18 13:16:18 +00:00
for (var item in this._canvases)
{
delete this._canvases[item['key']];
}
for (var item in this._images)
{
delete this._images[item['key']];
}
for (var item in this._sounds)
{
delete this._sounds[item['key']];
}
for (var item in this._text)
{
delete this._text[item['key']];
}
2013-04-12 16:19:56 +00:00
}
}
}