phaser/src/textures/Texture.js

134 lines
3 KiB
JavaScript
Raw Normal View History

/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2016 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
/**
* A Texture consists of a source, usually an Image from the Cache, or a Canvas, and a collection
* of Frames. The Frames represent the different areas of the Texture. For example a texture atlas
* may have many Frames, one for each element within the atlas. Where-as a single image would have
* just one frame, that encompasses the whole image.
*
* 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.
*
* @class Phaser.Texture
* @constructor
* @param {object} source
* @param {number} scaleMode
*/
Phaser.Texture = function (manager, key, source)
{
this.manager = manager;
if (!Array.isArray(source))
{
source = [ source ];
}
this.key = key;
/**
* The source that is used to create the texture.
* Usually an Image, but can also be a Canvas.
*
* @property source
* @type array
*/
this.source = [];
/**
* @property {object} frames - Frames
*/
2016-10-05 00:47:54 +00:00
this.frames = {};
this.frameTotal = 0;
2016-10-05 00:47:54 +00:00
this.dirty = true;
/**
* @property _glTextures
* @type Array
* @private
*/
2016-10-05 00:47:54 +00:00
this.glTextures = null;
// Load the Sources
for (var i = 0; i < source.length; i++)
{
this.source.push(new Phaser.TextureSource(this, source[i]));
}
};
Phaser.Texture.prototype.constructor = Phaser.Texture;
Phaser.Texture.prototype = {
add: function (name, sourceIndex, x, y, width, height)
{
var frame = new Phaser.TextureFrame(this, name, sourceIndex, x, y, width, height);
this.frames[name] = frame;
this.frameTotal++;
return frame;
},
get: function (name)
{
if (name === undefined || name === null) { name = '__BASE'; }
return this.frames[name];
},
/**
* Destroys this base texture
*
* @method destroy
*/
destroy: function ()
{
if (this.source)
{
Phaser.CanvasPool.removeByCanvas(this.source);
}
this.source = null;
this.unloadFromGPU();
// TODO: Clear out the Frames
}
};
/**
* Helper function that creates a base texture from the given canvas element.
*
* @static
* @method fromCanvas
* @param canvas {Canvas} The canvas element source of the texture
2016-10-07 02:22:59 +00:00
* @param scaleMode {Number} See {{#crossLink "PIXI/scaleModes:property"}}Phaser.scaleModes{{/crossLink}} for possible values
* @return {BaseTexture}
*/
Phaser.Texture.fromCanvas = function (canvas, scaleMode)
{
if (canvas.width === 0)
{
canvas.width = 1;
}
if (canvas.height === 0)
{
canvas.height = 1;
}
return new Phaser.Texture(canvas, scaleMode);
};