2018-03-05 02:24:47 +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}
|
|
|
|
*/
|
|
|
|
|
|
|
|
var CanvasPool = require('../../display/canvas/CanvasPool');
|
2018-02-23 03:44:22 +00:00
|
|
|
var Class = require('../../utils/Class');
|
|
|
|
var Components = require('../components');
|
2018-03-05 02:24:47 +00:00
|
|
|
var CONST = require('../../const');
|
2018-02-23 03:44:22 +00:00
|
|
|
var GameObject = require('../GameObject');
|
|
|
|
var Render = require('./RenderTextureRender');
|
2018-03-05 02:24:47 +00:00
|
|
|
var RenderTextureCanvas = require('./RenderTextureCanvas');
|
|
|
|
var RenderTextureWebGL = require('./RenderTextureWebGL');
|
2018-02-23 03:44:22 +00:00
|
|
|
|
2018-03-05 02:24:47 +00:00
|
|
|
/**
|
|
|
|
* @classdesc
|
|
|
|
* A Render Texture.
|
|
|
|
*
|
|
|
|
* @class RenderTexture
|
|
|
|
* @extends Phaser.GameObjects.GameObject
|
|
|
|
* @memberOf Phaser.GameObjects
|
|
|
|
* @constructor
|
|
|
|
* @since 3.2.0
|
|
|
|
*
|
|
|
|
* @extends Phaser.GameObjects.Components.Alpha
|
|
|
|
* @extends Phaser.GameObjects.Components.BlendMode
|
|
|
|
* @extends Phaser.GameObjects.Components.Depth
|
|
|
|
* @extends Phaser.GameObjects.Components.Flip
|
|
|
|
* @extends Phaser.GameObjects.Components.GetBounds
|
|
|
|
* @extends Phaser.GameObjects.Components.MatrixStack
|
|
|
|
* @extends Phaser.GameObjects.Components.Origin
|
|
|
|
* @extends Phaser.GameObjects.Components.Pipeline
|
|
|
|
* @extends Phaser.GameObjects.Components.ScaleMode
|
|
|
|
* @extends Phaser.GameObjects.Components.ScrollFactor
|
|
|
|
* @extends Phaser.GameObjects.Components.Size
|
|
|
|
* @extends Phaser.GameObjects.Components.Tint
|
|
|
|
* @extends Phaser.GameObjects.Components.Transform
|
|
|
|
* @extends Phaser.GameObjects.Components.Visible
|
|
|
|
*
|
|
|
|
* @param {Phaser.Scene} scene - The Scene to which this Game Object belongs. A Game Object can only belong to one Scene at a time.
|
|
|
|
* @param {number} x - The horizontal position of this Game Object in the world.
|
|
|
|
* @param {number} y - The vertical position of this Game Object in the world.
|
|
|
|
* @param {integer} [width=32] - The width of the Render Texture.
|
|
|
|
* @param {integer} [height=32] - The height of the Render Texture.
|
|
|
|
*/
|
2018-02-23 03:44:22 +00:00
|
|
|
var RenderTexture = new Class({
|
|
|
|
|
|
|
|
Extends: GameObject,
|
|
|
|
|
|
|
|
Mixins: [
|
|
|
|
Components.Alpha,
|
|
|
|
Components.BlendMode,
|
|
|
|
Components.Depth,
|
|
|
|
Components.Flip,
|
|
|
|
Components.GetBounds,
|
|
|
|
Components.MatrixStack,
|
|
|
|
Components.Origin,
|
|
|
|
Components.Pipeline,
|
|
|
|
Components.ScaleMode,
|
|
|
|
Components.ScrollFactor,
|
|
|
|
Components.Size,
|
|
|
|
Components.Tint,
|
|
|
|
Components.Transform,
|
|
|
|
Components.Visible,
|
|
|
|
Render
|
|
|
|
],
|
|
|
|
|
|
|
|
initialize:
|
|
|
|
|
2018-03-05 01:40:11 +00:00
|
|
|
function RenderTexture (scene, x, y, width, height)
|
2018-02-23 03:44:22 +00:00
|
|
|
{
|
2018-03-05 02:24:47 +00:00
|
|
|
if (width === undefined) { width = 32; }
|
|
|
|
if (height === undefined) { height = 32; }
|
|
|
|
|
2018-02-23 03:44:22 +00:00
|
|
|
GameObject.call(this, scene, 'RenderTexture');
|
2018-03-05 02:24:47 +00:00
|
|
|
|
2018-02-23 03:44:22 +00:00
|
|
|
this.initMatrixStack();
|
|
|
|
|
|
|
|
this.renderer = scene.sys.game.renderer;
|
2018-03-05 19:57:41 +00:00
|
|
|
this.globalTint = 0xFFFFFFF;
|
|
|
|
this.globalAlpha = 1.0;
|
2018-02-23 03:44:22 +00:00
|
|
|
|
2018-03-05 02:24:47 +00:00
|
|
|
if (this.renderer.type === CONST.WEBGL)
|
2018-02-23 03:44:22 +00:00
|
|
|
{
|
|
|
|
var gl = this.renderer.gl;
|
|
|
|
this.gl = gl;
|
|
|
|
this.fill = RenderTextureWebGL.fill;
|
|
|
|
this.clear = RenderTextureWebGL.clear;
|
|
|
|
this.draw = RenderTextureWebGL.draw;
|
|
|
|
this.drawFrame = RenderTextureWebGL.drawFrame;
|
|
|
|
this.texture = this.renderer.createTexture2D(0, gl.NEAREST, gl.NEAREST, gl.CLAMP_TO_EDGE, gl.CLAMP_TO_EDGE, gl.RGBA, null, width, height, false);
|
|
|
|
this.framebuffer = this.renderer.createFramebuffer(width, height, this.texture, false);
|
|
|
|
}
|
2018-03-05 02:24:47 +00:00
|
|
|
else if (this.renderer.type === CONST.CANVAS)
|
2018-02-23 03:44:22 +00:00
|
|
|
{
|
2018-02-24 00:05:15 +00:00
|
|
|
this.fill = RenderTextureCanvas.fill;
|
|
|
|
this.clear = RenderTextureCanvas.clear;
|
|
|
|
this.draw = RenderTextureCanvas.draw;
|
|
|
|
this.drawFrame = RenderTextureCanvas.drawFrame;
|
|
|
|
this.canvas = CanvasPool.create2D(null, width, height);
|
2018-03-05 01:40:11 +00:00
|
|
|
this.context = this.canvas.getContext('2d');
|
2018-02-23 03:44:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
this.setPosition(x, y);
|
|
|
|
this.setSize(width, height);
|
|
|
|
this.initPipeline('TextureTintPipeline');
|
|
|
|
},
|
|
|
|
|
2018-03-05 02:24:47 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.RenderTexture#destroy
|
|
|
|
* @since 3.2.0
|
|
|
|
*/
|
2018-02-23 03:44:22 +00:00
|
|
|
destroy: function ()
|
|
|
|
{
|
|
|
|
GameObject.destroy.call(this);
|
2018-03-05 02:24:47 +00:00
|
|
|
|
|
|
|
if (this.renderer.type === CONST.WEBGL)
|
2018-02-23 03:44:22 +00:00
|
|
|
{
|
|
|
|
this.renderer.deleteTexture(this.texture);
|
|
|
|
this.renderer.deleteFramebuffer(this.framebuffer);
|
|
|
|
}
|
2018-03-05 19:57:41 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.RenderTexture#setGlobalTint
|
|
|
|
* @since 3.2.0
|
|
|
|
*
|
|
|
|
* @param {int} tint [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.RenderTexture} [description]
|
|
|
|
*/
|
|
|
|
setGlobalTint: function (tint)
|
|
|
|
{
|
|
|
|
this.globalTint = tint;
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.RenderTexture#setGlobalAlpha
|
|
|
|
* @since 3.2.0
|
|
|
|
*
|
|
|
|
* @param {float} alpha [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.RenderTexture} [description]
|
|
|
|
*/
|
|
|
|
setGlobalAlpha: function (alpha)
|
|
|
|
{
|
|
|
|
this.globalAlpha = alpha;
|
|
|
|
return this;
|
2018-03-05 21:49:08 +00:00
|
|
|
}
|
2018-02-23 03:44:22 +00:00
|
|
|
|
2018-03-05 02:24:47 +00:00
|
|
|
/**
|
|
|
|
* Fills the Render Texture with the given color.
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.RenderTexture#fill
|
|
|
|
* @since 3.2.0
|
|
|
|
*
|
|
|
|
* @param {number} rgb - The color to fill the Render Texture with.
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.RenderTexture} This Game Object.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clears the Render Texture.
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.RenderTexture#clear
|
|
|
|
* @since 3.2.0
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.RenderTexture} This Game Object.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Draws a texture frame to the Render Texture at the given position.
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.RenderTexture#draw
|
|
|
|
* @since 3.2.0
|
|
|
|
*
|
|
|
|
* @param {string} texture - The key of the Texture this Game Object will use to render with, as stored in the Texture Manager.
|
|
|
|
* @param {string|integer} [frame] - An optional frame from the Texture this Game Object is rendering with.
|
|
|
|
* @param {number} x - The x position to draw the frame at.
|
|
|
|
* @param {number} y - The y position to draw the frame at.
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.RenderTexture} This Game Object.
|
|
|
|
*/
|
|
|
|
|
2018-02-23 03:44:22 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = RenderTexture;
|