2018-04-05 08:23:29 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @author Felipe Alfonso <@bitnenfer>
|
2019-01-15 16:20:22 +00:00
|
|
|
* @copyright 2019 Photon Storm Ltd.
|
2019-05-10 15:15:04 +00:00
|
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
2018-04-05 08:23:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders this Game Object with the Canvas Renderer to the given Camera.
|
|
|
|
* The object will not render if any of its renderFlags are set or it is being actively filtered out by the Camera.
|
|
|
|
* This method should not be called directly. It is a utility function of the Render module.
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Container#renderCanvas
|
|
|
|
* @since 3.4.0
|
|
|
|
* @private
|
|
|
|
*
|
|
|
|
* @param {Phaser.Renderer.Canvas.CanvasRenderer} renderer - A reference to the current active Canvas renderer.
|
|
|
|
* @param {Phaser.GameObjects.Container} container - The Game Object being rendered in this call.
|
|
|
|
* @param {number} interpolationPercentage - Reserved for future use and custom pipelines.
|
|
|
|
* @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera that is rendering the Game Object.
|
|
|
|
* @param {Phaser.GameObjects.Components.TransformMatrix} parentMatrix - This transform matrix is defined if the game object is nested
|
|
|
|
*/
|
2018-04-04 15:22:10 +00:00
|
|
|
var ContainerCanvasRenderer = function (renderer, container, interpolationPercentage, camera, parentMatrix)
|
2018-03-23 17:15:52 +00:00
|
|
|
{
|
2018-07-19 12:19:02 +00:00
|
|
|
var children = container.list;
|
|
|
|
|
|
|
|
if (children.length === 0)
|
2018-03-23 17:15:52 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-04 15:22:10 +00:00
|
|
|
var transformMatrix = container.localTransform;
|
|
|
|
|
2018-08-02 15:19:14 +00:00
|
|
|
if (parentMatrix)
|
2018-04-04 15:22:10 +00:00
|
|
|
{
|
|
|
|
transformMatrix.loadIdentity();
|
|
|
|
transformMatrix.multiply(parentMatrix);
|
|
|
|
transformMatrix.translate(container.x, container.y);
|
2018-04-10 17:13:23 +00:00
|
|
|
transformMatrix.rotate(container.rotation);
|
2018-04-04 15:22:10 +00:00
|
|
|
transformMatrix.scale(container.scaleX, container.scaleY);
|
|
|
|
}
|
2018-08-02 15:19:14 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
transformMatrix.applyITRS(container.x, container.y, container.rotation, container.scaleX, container.scaleY);
|
|
|
|
}
|
2018-04-04 15:22:10 +00:00
|
|
|
|
2018-08-21 21:07:35 +00:00
|
|
|
var containerHasBlendMode = (container.blendMode !== -1);
|
|
|
|
|
|
|
|
if (!containerHasBlendMode)
|
|
|
|
{
|
|
|
|
// If Container is SKIP_TEST then set blend mode to be Normal
|
|
|
|
renderer.setBlendMode(0);
|
|
|
|
}
|
|
|
|
|
2018-04-09 15:32:08 +00:00
|
|
|
var alpha = container._alpha;
|
2018-04-11 14:02:04 +00:00
|
|
|
var scrollFactorX = container.scrollFactorX;
|
|
|
|
var scrollFactorY = container.scrollFactorY;
|
2018-04-09 15:32:08 +00:00
|
|
|
|
2018-07-19 12:19:02 +00:00
|
|
|
for (var i = 0; i < children.length; i++)
|
2018-04-04 15:22:10 +00:00
|
|
|
{
|
2018-07-19 12:19:02 +00:00
|
|
|
var child = children[i];
|
2018-07-31 11:57:31 +00:00
|
|
|
|
|
|
|
if (!child.willRender(camera))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-08-08 13:03:23 +00:00
|
|
|
var childAlpha = child.alpha;
|
2018-04-11 14:02:04 +00:00
|
|
|
var childScrollFactorX = child.scrollFactorX;
|
|
|
|
var childScrollFactorY = child.scrollFactorY;
|
|
|
|
|
2019-10-01 13:08:13 +00:00
|
|
|
if (!containerHasBlendMode && child.blendMode !== renderer.currentBlendMode)
|
|
|
|
{
|
|
|
|
// If Container doesn't have its own blend mode, then a child can have one
|
|
|
|
renderer.setBlendMode(child.blendMode);
|
|
|
|
}
|
|
|
|
|
2018-08-21 21:07:35 +00:00
|
|
|
// Set parent values
|
2018-04-11 14:02:04 +00:00
|
|
|
child.setScrollFactor(childScrollFactorX * scrollFactorX, childScrollFactorY * scrollFactorY);
|
2018-04-09 15:32:08 +00:00
|
|
|
child.setAlpha(childAlpha * alpha);
|
2018-08-03 00:53:51 +00:00
|
|
|
|
|
|
|
// Render
|
2018-04-09 15:32:08 +00:00
|
|
|
child.renderCanvas(renderer, child, interpolationPercentage, camera, transformMatrix);
|
2018-08-03 00:53:51 +00:00
|
|
|
|
2018-08-21 21:07:35 +00:00
|
|
|
// Restore original values
|
2018-04-09 15:32:08 +00:00
|
|
|
child.setAlpha(childAlpha);
|
2018-04-11 14:02:04 +00:00
|
|
|
child.setScrollFactor(childScrollFactorX, childScrollFactorY);
|
2018-04-04 15:22:10 +00:00
|
|
|
}
|
2018-03-23 17:15:52 +00:00
|
|
|
};
|
|
|
|
|
2018-04-05 08:02:36 +00:00
|
|
|
module.exports = ContainerCanvasRenderer;
|