2018-09-07 11:43:49 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
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-09-07 11:43:49 +00:00
|
|
|
*/
|
|
|
|
|
2018-09-11 12:50:01 +00:00
|
|
|
var LineStyleCanvas = require('../LineStyleCanvas');
|
|
|
|
var SetTransform = require('../../../renderer/canvas/utils/SetTransform');
|
|
|
|
|
2018-09-07 11:43:49 +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.Line#renderCanvas
|
|
|
|
* @since 3.13.0
|
|
|
|
* @private
|
|
|
|
*
|
|
|
|
* @param {Phaser.Renderer.Canvas.CanvasRenderer} renderer - A reference to the current active Canvas renderer.
|
|
|
|
* @param {Phaser.GameObjects.Line} src - 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
|
|
|
|
*/
|
|
|
|
var LineCanvasRenderer = function (renderer, src, interpolationPercentage, camera, parentMatrix)
|
|
|
|
{
|
2018-09-11 12:50:01 +00:00
|
|
|
var ctx = renderer.currentContext;
|
|
|
|
|
|
|
|
if (SetTransform(renderer, ctx, src, camera, parentMatrix))
|
|
|
|
{
|
|
|
|
var dx = src._displayOriginX;
|
|
|
|
var dy = src._displayOriginY;
|
|
|
|
|
|
|
|
if (src.isStroked)
|
|
|
|
{
|
|
|
|
LineStyleCanvas(ctx, src);
|
|
|
|
|
|
|
|
ctx.beginPath();
|
|
|
|
|
2018-09-12 15:58:32 +00:00
|
|
|
ctx.moveTo(src.geom.x1 - dx, src.geom.y1 - dy);
|
|
|
|
ctx.lineTo(src.geom.x2 - dx, src.geom.y2 - dy);
|
2018-09-11 12:50:01 +00:00
|
|
|
|
|
|
|
ctx.stroke();
|
|
|
|
}
|
The Canvas `SetTransform` method would save the context state, but it wasn't restored at the end in the following Game Objects: Dynamic Bitmap Text, Graphics, Arc, Curve, Ellipse, Grid, IsoBox, IsoTriangle, Line, Polygon, Rectangle, Star and Triangle. These now all restore the context, meaning if you're using non-canvas sized cameras in Canvas mode, it will now render beyond just the first custom camera.
2018-11-27 13:54:59 +00:00
|
|
|
|
|
|
|
// Restore the context saved in SetTransform
|
|
|
|
ctx.restore();
|
2018-09-11 12:50:01 +00:00
|
|
|
}
|
2018-09-07 11:43:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = LineCanvasRenderer;
|