2016-12-06 16:18:28 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2016 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
|
|
|
var Parser = require('./parsers');
|
|
|
|
var Texture = require('./Texture');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Textures are managed by the global TextureManager. This is a singleton class that is
|
|
|
|
* responsible for creating and delivering Textures and their corresponding Frames to Game Objects.
|
|
|
|
*
|
|
|
|
* Sprites and other Game Objects get the texture data they need from the TextureManager.
|
|
|
|
*
|
|
|
|
* Access it via `state.textures`.
|
|
|
|
*
|
|
|
|
* @class Phaser.TextureManager
|
|
|
|
* @constructor
|
|
|
|
*/
|
2017-01-19 23:20:36 +00:00
|
|
|
var TextureManager = function (game)
|
2016-12-06 16:18:28 +00:00
|
|
|
{
|
2017-01-19 23:20:36 +00:00
|
|
|
this.game = game;
|
|
|
|
|
2016-12-06 16:18:28 +00:00
|
|
|
this.list = {};
|
|
|
|
};
|
|
|
|
|
|
|
|
TextureManager.prototype.constructor = TextureManager;
|
|
|
|
|
|
|
|
TextureManager.prototype = {
|
|
|
|
|
|
|
|
addImage: function (key, source)
|
|
|
|
{
|
|
|
|
var texture = this.create(key, source);
|
|
|
|
|
|
|
|
Parser.Image(texture, 0);
|
|
|
|
|
|
|
|
return texture;
|
|
|
|
},
|
|
|
|
|
|
|
|
addCanvas: function (key, source)
|
|
|
|
{
|
|
|
|
var texture = this.create(key, source);
|
|
|
|
|
|
|
|
Parser.Canvas(texture, 0);
|
|
|
|
|
|
|
|
return texture;
|
|
|
|
},
|
|
|
|
|
2016-12-07 10:50:10 +00:00
|
|
|
addAtlas: function (key, source, data)
|
|
|
|
{
|
|
|
|
// Is it a Hash or an Array?
|
|
|
|
|
|
|
|
if (Array.isArray(data.frames))
|
|
|
|
{
|
|
|
|
return this.addAtlasJSONArray(key, source, data);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return this.addAtlasJSONHash(key, source, data);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-12-06 16:18:28 +00:00
|
|
|
addAtlasJSONArray: function (key, source, data)
|
|
|
|
{
|
|
|
|
var texture = this.create(key, source);
|
|
|
|
|
|
|
|
if (Array.isArray(data))
|
|
|
|
{
|
|
|
|
for (var i = 0; i < data.length; i++)
|
|
|
|
{
|
|
|
|
Parser.JSONArray(texture, i, data[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Parser.JSONArray(texture, 0, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
return texture;
|
|
|
|
},
|
|
|
|
|
|
|
|
addAtlasJSONHash: function (key, source, data)
|
|
|
|
{
|
|
|
|
var texture = this.create(key, source);
|
|
|
|
|
|
|
|
if (Array.isArray(data))
|
|
|
|
{
|
|
|
|
for (var i = 0; i < data.length; i++)
|
|
|
|
{
|
|
|
|
Parser.JSONHash(texture, i, data[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Parser.JSONHash(texture, 0, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
return texture;
|
|
|
|
},
|
|
|
|
|
2017-02-04 05:36:06 +00:00
|
|
|
/**
|
|
|
|
* [addSpriteSheet description]
|
|
|
|
* @param {[type]} key [description]
|
|
|
|
* @param {[type]} source [description]
|
|
|
|
* @param {[type]} config [description]
|
|
|
|
* @param {number} config.frameWidth - The fixed width of each frame.
|
|
|
|
* @param {number} [config.frameHeight] - The fixed height of each frame. If not set it will use the frameWidth as the height.
|
|
|
|
* @param {number} [config.startFrame=0] - Skip a number of frames. Useful when there are multiple sprite sheets in one Texture.
|
|
|
|
* @param {number} [config.endFrame=-1] - The total number of frames to extract from the Sprite Sheet. The default value of -1 means "extract all frames".
|
|
|
|
* @param {number} [config.margin=0] - If the frames have been drawn with a margin, specify the amount here.
|
|
|
|
* @param {number} [config.spacing=0] - If the frames have been drawn with spacing between them, specify the amount here.
|
|
|
|
*/
|
|
|
|
addSpriteSheet: function (key, source, config)
|
2016-12-06 16:18:28 +00:00
|
|
|
{
|
|
|
|
var texture = this.create(key, source);
|
|
|
|
|
|
|
|
var width = texture.source[0].width;
|
|
|
|
var height = texture.source[0].height;
|
|
|
|
|
2017-02-04 05:36:06 +00:00
|
|
|
Parser.SpriteSheet(texture, 0, 0, 0, width, height, config);
|
2016-12-06 16:18:28 +00:00
|
|
|
|
|
|
|
return texture;
|
|
|
|
},
|
|
|
|
|
2017-02-04 05:36:06 +00:00
|
|
|
addSpriteSheetFromAtlas: function (key, atlasKey, atlasFrame, config)
|
2016-12-06 16:18:28 +00:00
|
|
|
{
|
|
|
|
var atlas = this.get(atlasKey);
|
|
|
|
var sheet = atlas.get(atlasFrame);
|
|
|
|
|
|
|
|
if (sheet)
|
|
|
|
{
|
|
|
|
var texture = this.create(key, sheet.source.image);
|
|
|
|
|
2017-02-04 05:36:06 +00:00
|
|
|
Parser.SpriteSheet(texture, 0, sheet.cutX, sheet.cutY, sheet.cutWidth, sheet.cutHeight, config);
|
2016-12-06 16:18:28 +00:00
|
|
|
|
|
|
|
return texture;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
addAtlasStarlingXML: function (key, source, data)
|
|
|
|
{
|
|
|
|
var texture = this.create(key, source);
|
|
|
|
|
|
|
|
if (Array.isArray(data))
|
|
|
|
{
|
|
|
|
for (var i = 0; i < data.length; i++)
|
|
|
|
{
|
|
|
|
Parser.StarlingXML(texture, i, data[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Parser.StarlingXML(texture, 0, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
return texture;
|
|
|
|
},
|
|
|
|
|
|
|
|
addAtlasPyxel: function (key, source, data)
|
|
|
|
{
|
|
|
|
var texture = this.create(key, source);
|
|
|
|
|
|
|
|
if (Array.isArray(data))
|
|
|
|
{
|
|
|
|
for (var i = 0; i < data.length; i++)
|
|
|
|
{
|
|
|
|
Parser.Pyxel(texture, i, data[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Parser.Pyxel(texture, 0, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
return texture;
|
|
|
|
},
|
|
|
|
|
|
|
|
create: function (key, source)
|
|
|
|
{
|
|
|
|
var texture = new Texture(this, key, source);
|
|
|
|
|
|
|
|
this.list[key] = texture;
|
|
|
|
|
|
|
|
return texture;
|
|
|
|
},
|
|
|
|
|
|
|
|
exists: function (key)
|
|
|
|
{
|
|
|
|
return (this.list.hasOwnProperty(key));
|
|
|
|
},
|
|
|
|
|
|
|
|
get: function (key)
|
|
|
|
{
|
|
|
|
if (key === undefined) { key = '__DEFAULT'; }
|
|
|
|
|
|
|
|
if (this.list[key])
|
|
|
|
{
|
|
|
|
return this.list[key];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return this.list['__MISSING'];
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
cloneFrame: function (key, frame)
|
|
|
|
{
|
|
|
|
if (this.list[key])
|
|
|
|
{
|
|
|
|
return this.list[key].get(frame).clone();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
getFrame: function (key, frame)
|
|
|
|
{
|
|
|
|
if (this.list[key])
|
|
|
|
{
|
|
|
|
return this.list[key].get(frame);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
setTexture: function (gameObject, key, frame)
|
|
|
|
{
|
|
|
|
if (this.list[key])
|
|
|
|
{
|
|
|
|
gameObject.texture = this.list[key];
|
|
|
|
gameObject.frame = gameObject.texture.get(frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
return gameObject;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Passes all Textures to the given callback.
|
|
|
|
*
|
|
|
|
* @method each
|
|
|
|
* @param {function} callback - The function to call.
|
|
|
|
* @param {object} [thisArg] - Value to use as `this` when executing callback.
|
|
|
|
* @param {...*} [arguments] - Additional arguments that will be passed to the callback, after the child.
|
|
|
|
*/
|
|
|
|
each: function (callback, thisArg)
|
|
|
|
{
|
|
|
|
var args = [ null ];
|
|
|
|
|
|
|
|
for (var i = 1; i < arguments.length; i++)
|
|
|
|
{
|
|
|
|
args.push(arguments[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (var texture in this.list)
|
|
|
|
{
|
|
|
|
args[0] = this.list[texture];
|
|
|
|
|
|
|
|
callback.apply(thisArg, args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = TextureManager;
|