2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2018 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
2017-07-04 12:23:58 +00:00
|
|
|
var Class = require('../utils/Class');
|
2017-01-20 18:51:20 +00:00
|
|
|
var CONST = require('../const');
|
2016-12-08 16:21:16 +00:00
|
|
|
var IsSizePowerOfTwo = require('../math/pow2/IsSizePowerOfTwo');
|
2017-07-04 12:23:58 +00:00
|
|
|
var ScaleModes = require('../renderer/ScaleModes');
|
2016-12-06 16:18:28 +00:00
|
|
|
|
2018-02-08 04:01:44 +00:00
|
|
|
/**
|
|
|
|
* @classdesc
|
|
|
|
* A Texture Source is the encapsulation of the actual source data for a Texture.
|
|
|
|
* This is typically an Image Element, loaded from the file system or network, or a Canvas Element.
|
|
|
|
*
|
|
|
|
* A Texture can contain multiple Texture Sources, which only happens when a multi-atlas is loaded.
|
|
|
|
*
|
|
|
|
* @class TextureSource
|
|
|
|
* @memberOf Phaser.Textures
|
|
|
|
* @constructor
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {Phaser.Textures.Texture} texture - The Texture this TextureSource belongs to.
|
|
|
|
* @param {Image|HTMLCanvasElement} source - The source image data.
|
|
|
|
* @param {integer} [width] - Optional width of the source image. If not given it's derived from the source itself.
|
|
|
|
* @param {integer} [height] - Optional height of the source image. If not given it's derived from the source itself.
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
var TextureSource = new Class({
|
2016-12-06 16:18:28 +00:00
|
|
|
|
2017-07-04 12:23:58 +00:00
|
|
|
initialize:
|
2017-06-07 23:12:22 +00:00
|
|
|
|
2017-07-04 12:23:58 +00:00
|
|
|
function TextureSource (texture, source, width, height)
|
|
|
|
{
|
2017-09-13 20:54:32 +00:00
|
|
|
var game = texture.manager.game;
|
|
|
|
|
2018-02-08 04:01:44 +00:00
|
|
|
/**
|
|
|
|
* The Texture this TextureSource belongs to.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.TextureSource#texture
|
|
|
|
* @type {string}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.texture = texture;
|
|
|
|
|
2018-02-08 04:01:44 +00:00
|
|
|
/**
|
|
|
|
* The source image data. This is either an Image Element, or a Canvas Element.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.TextureSource#image
|
2018-03-19 17:05:29 +00:00
|
|
|
* @type {HTMLImageElement|HTMLCanvasElement}
|
2018-02-08 04:01:44 +00:00
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.image = source;
|
|
|
|
|
2018-02-08 04:01:44 +00:00
|
|
|
/**
|
|
|
|
* Currently un-used.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.TextureSource#compressionAlgorithm
|
|
|
|
* @type {integer}
|
|
|
|
* @default null
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.compressionAlgorithm = null;
|
|
|
|
|
2018-02-08 04:01:44 +00:00
|
|
|
/**
|
|
|
|
* The resolution of the source image.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.TextureSource#resolution
|
|
|
|
* @type {number}
|
|
|
|
* @default 1
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.resolution = 1;
|
2018-02-08 04:01:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The width of the source image. If not specified in the constructor it will check
|
|
|
|
* the `naturalWidth` and then `width` properties of the source image.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.TextureSource#width
|
|
|
|
* @type {integer}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.width = width || source.naturalWidth || source.width || 0;
|
|
|
|
|
2018-02-08 04:01:44 +00:00
|
|
|
/**
|
|
|
|
* The height of the source image. If not specified in the constructor it will check
|
|
|
|
* the `naturalHeight` and then `height` properties of the source image.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.TextureSource#height
|
|
|
|
* @type {integer}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.height = height || source.naturalHeight || source.height || 0;
|
|
|
|
|
2018-02-08 04:01:44 +00:00
|
|
|
/**
|
|
|
|
* The Scale Mode the image will use when rendering.
|
|
|
|
* Either Linear or Nearest.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.TextureSource#scaleMode
|
2018-03-19 01:03:17 +00:00
|
|
|
* @type {number}
|
2018-02-08 04:01:44 +00:00
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.scaleMode = ScaleModes.DEFAULT;
|
|
|
|
|
2018-02-08 04:01:44 +00:00
|
|
|
/**
|
|
|
|
* Is the source image a Canvas Element?
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.TextureSource#isCanvas
|
|
|
|
* @type {boolean}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-09-20 23:15:31 +00:00
|
|
|
this.isCanvas = (source instanceof HTMLCanvasElement);
|
|
|
|
|
2018-02-08 04:01:44 +00:00
|
|
|
/**
|
|
|
|
* Are the source image dimensions a power of two?
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.TextureSource#isPowerOf2
|
|
|
|
* @type {boolean}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-08-01 12:10:08 +00:00
|
|
|
this.isPowerOf2 = IsSizePowerOfTwo(this.width, this.height);
|
|
|
|
|
2018-02-08 04:01:44 +00:00
|
|
|
/**
|
|
|
|
* The WebGL Texture of the source image.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.TextureSource#glTexture
|
2018-03-19 01:03:17 +00:00
|
|
|
* @type {?WebGLTexture}
|
2018-02-08 04:01:44 +00:00
|
|
|
* @default null
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2018-01-29 23:38:27 +00:00
|
|
|
this.glTexture = null;
|
|
|
|
|
2017-09-13 20:54:32 +00:00
|
|
|
this.init(game);
|
|
|
|
},
|
2017-07-04 12:23:58 +00:00
|
|
|
|
2018-02-08 04:01:44 +00:00
|
|
|
/**
|
|
|
|
* Creates a WebGL Texture, if required, and sets the Texture filter mode.
|
|
|
|
*
|
|
|
|
* @method Phaser.Textures.TextureSource#init
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {Phaser.Game} game - A reference to the Phaser Game instance.
|
|
|
|
*/
|
2017-09-13 20:54:32 +00:00
|
|
|
init: function (game)
|
|
|
|
{
|
2017-07-04 12:23:58 +00:00
|
|
|
if (game.config.renderType === CONST.WEBGL)
|
|
|
|
{
|
2018-01-24 00:40:20 +00:00
|
|
|
this.glTexture = game.renderer.createTextureFromSource(this.image, this.width, this.height, this.scaleMode);
|
2017-07-04 12:23:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (game.config.pixelArt)
|
|
|
|
{
|
|
|
|
this.setFilter(1);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-02-08 04:01:44 +00:00
|
|
|
/**
|
|
|
|
* Sets the Filter Mode for this Texture.
|
|
|
|
*
|
|
|
|
* The mode can be either Linear, the default, or Nearest.
|
|
|
|
*
|
|
|
|
* For pixel-art you should use Nearest.
|
|
|
|
*
|
|
|
|
* @method Phaser.Textures.TextureSource#setFilter
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {Phaser.Textures.FilterMode.LINEAR|Phaser.Textures.FilterMode.NEAREST} filterMode - The Filter Mode.
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
setFilter: function (filterMode)
|
2017-05-20 01:16:45 +00:00
|
|
|
{
|
2017-07-04 12:23:58 +00:00
|
|
|
var game = this.texture.manager.game;
|
|
|
|
|
|
|
|
if (game.config.renderType === CONST.WEBGL)
|
|
|
|
{
|
2018-01-22 21:21:47 +00:00
|
|
|
game.renderer.setTextureFilter(this.glTexture, filterMode);
|
2017-07-04 12:23:58 +00:00
|
|
|
}
|
2018-01-31 03:38:10 +00:00
|
|
|
},
|
|
|
|
|
2018-02-08 04:01:44 +00:00
|
|
|
/**
|
|
|
|
* Destroys this Texture Source and nulls the source image reference.
|
|
|
|
*
|
|
|
|
* @method Phaser.Textures.TextureSource#destroy
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2018-01-31 03:38:10 +00:00
|
|
|
destroy: function ()
|
|
|
|
{
|
|
|
|
this.texture = null;
|
|
|
|
|
|
|
|
this.image = null;
|
2017-05-20 01:16:45 +00:00
|
|
|
}
|
2017-07-04 12:23:58 +00:00
|
|
|
|
|
|
|
});
|
2017-05-20 01:16:45 +00:00
|
|
|
|
2016-12-06 16:18:28 +00:00
|
|
|
module.exports = TextureSource;
|