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}
|
|
|
|
*/
|
|
|
|
|
2018-02-06 19:22:20 +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.Particles.EmitterManager#renderCanvas
|
|
|
|
* @since 3.0.0
|
|
|
|
* @private
|
|
|
|
*
|
2018-03-28 14:04:09 +00:00
|
|
|
* @param {Phaser.Renderer.Canvas.CanvasRenderer} renderer - A reference to the current active Canvas renderer.
|
2018-03-29 12:12:07 +00:00
|
|
|
* @param {Phaser.GameObjects.Particles.ParticleEmitterManager} emitterManager - The Game Object being rendered in this call.
|
2018-02-06 19:22:20 +00:00
|
|
|
* @param {number} interpolationPercentage - Reserved for future use and custom pipelines.
|
|
|
|
* @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera that is rendering the Game Object.
|
2018-04-04 16:14:55 +00:00
|
|
|
* @param {Phaser.GameObjects.Components.TransformMatrix} parentMatrix - This transform matrix is defined if the game object is nested
|
2018-02-06 19:22:20 +00:00
|
|
|
*/
|
2018-04-04 16:14:55 +00:00
|
|
|
var ParticleManagerCanvasRenderer = function (renderer, emitterManager, interpolationPercentage, camera, parentMatrix)
|
2017-10-17 03:19:03 +00:00
|
|
|
{
|
2017-10-20 13:14:37 +00:00
|
|
|
var emitters = emitterManager.emitters.list;
|
2018-07-19 12:19:02 +00:00
|
|
|
var emittersLength = emitters.length;
|
2017-10-17 03:19:03 +00:00
|
|
|
|
2018-07-19 12:19:02 +00:00
|
|
|
if (emittersLength === 0)
|
2017-10-17 03:19:03 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-31 22:21:07 +00:00
|
|
|
var camMatrix = renderer._tempMatrix1.copyFrom(camera.matrix);
|
2018-08-03 00:04:46 +00:00
|
|
|
var calcMatrix = renderer._tempMatrix2;
|
|
|
|
var particleMatrix = renderer._tempMatrix3;
|
|
|
|
var managerMatrix = renderer._tempMatrix4.applyITRS(emitterManager.x, emitterManager.y, emitterManager.rotation, emitterManager.scaleX, emitterManager.scaleY);
|
2018-07-31 22:21:07 +00:00
|
|
|
|
|
|
|
camMatrix.multiply(managerMatrix);
|
|
|
|
|
2018-08-03 00:04:46 +00:00
|
|
|
var roundPixels = camera.roundPixels;
|
|
|
|
|
2018-04-04 17:05:59 +00:00
|
|
|
var ctx = renderer.currentContext;
|
|
|
|
|
|
|
|
ctx.save();
|
2018-06-25 15:24:08 +00:00
|
|
|
|
2018-08-03 00:04:46 +00:00
|
|
|
for (var e = 0; e < emittersLength; e++)
|
2018-04-04 17:05:59 +00:00
|
|
|
{
|
2018-08-03 00:04:46 +00:00
|
|
|
var emitter = emitters[e];
|
2017-10-17 03:19:03 +00:00
|
|
|
var particles = emitter.alive;
|
2018-08-03 00:04:46 +00:00
|
|
|
var particleCount = particles.length;
|
2017-10-17 03:19:03 +00:00
|
|
|
|
2018-08-03 00:04:46 +00:00
|
|
|
if (!emitter.visible || particleCount === 0)
|
2017-10-19 23:54:28 +00:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-08-03 00:04:46 +00:00
|
|
|
var scrollX = camera.scrollX * emitter.scrollFactorX;
|
|
|
|
var scrollY = camera.scrollY * emitter.scrollFactorY;
|
2018-06-25 15:24:08 +00:00
|
|
|
|
2018-08-03 00:04:46 +00:00
|
|
|
if (parentMatrix)
|
|
|
|
{
|
|
|
|
// Multiply the camera by the parent matrix
|
|
|
|
camMatrix.multiplyWithOffset(parentMatrix, -scrollX, -scrollY);
|
|
|
|
|
|
|
|
scrollX = 0;
|
|
|
|
scrollY = 0;
|
|
|
|
}
|
2017-10-17 03:19:03 +00:00
|
|
|
|
2018-08-03 00:29:18 +00:00
|
|
|
ctx.globalCompositeOperation = renderer.blendModes[emitter.blendMode];
|
2017-10-17 03:19:03 +00:00
|
|
|
|
2018-08-03 00:04:46 +00:00
|
|
|
for (var i = 0; i < particleCount; i++)
|
2017-10-17 03:19:03 +00:00
|
|
|
{
|
2018-08-03 00:04:46 +00:00
|
|
|
var particle = particles[i];
|
2017-10-19 23:54:28 +00:00
|
|
|
|
2018-08-03 00:04:46 +00:00
|
|
|
var alpha = particle.alpha * camera.alpha;
|
2017-11-11 03:51:54 +00:00
|
|
|
|
2018-08-03 00:04:46 +00:00
|
|
|
if (alpha <= 0)
|
2017-11-11 03:51:54 +00:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-10-19 23:54:28 +00:00
|
|
|
var frame = particle.frame;
|
2018-08-03 00:29:18 +00:00
|
|
|
var cd = frame.canvasData;
|
2017-10-19 23:54:28 +00:00
|
|
|
|
2018-08-03 00:04:46 +00:00
|
|
|
var x = -(frame.halfWidth);
|
|
|
|
var y = -(frame.halfHeight);
|
2017-10-17 03:19:03 +00:00
|
|
|
|
2018-08-03 00:04:46 +00:00
|
|
|
particleMatrix.applyITRS(0, 0, particle.rotation, particle.scaleX, particle.scaleY);
|
2018-02-28 22:40:08 +00:00
|
|
|
|
2018-08-03 00:04:46 +00:00
|
|
|
particleMatrix.e = particle.x - scrollX;
|
|
|
|
particleMatrix.f = particle.y - scrollY;
|
|
|
|
|
|
|
|
camMatrix.multiply(particleMatrix, calcMatrix);
|
|
|
|
|
|
|
|
ctx.globalAlpha = alpha;
|
2017-10-17 03:19:03 +00:00
|
|
|
|
|
|
|
ctx.save();
|
2018-02-28 22:40:08 +00:00
|
|
|
|
2018-08-03 00:04:46 +00:00
|
|
|
calcMatrix.copyToContext(ctx);
|
|
|
|
|
|
|
|
if (roundPixels)
|
|
|
|
{
|
2018-11-30 10:27:25 +00:00
|
|
|
x = Math.round(x);
|
|
|
|
y = Math.round(y);
|
2018-08-03 00:04:46 +00:00
|
|
|
}
|
|
|
|
|
2018-07-29 11:16:42 +00:00
|
|
|
ctx.drawImage(frame.source.image, cd.x, cd.y, cd.width, cd.height, x, y, cd.width, cd.height);
|
2018-02-28 22:40:08 +00:00
|
|
|
|
2017-10-17 03:19:03 +00:00
|
|
|
ctx.restore();
|
|
|
|
}
|
|
|
|
}
|
2018-04-04 17:05:59 +00:00
|
|
|
|
|
|
|
ctx.restore();
|
2017-10-17 03:19:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = ParticleManagerCanvasRenderer;
|