2013-08-31 20:50:34 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2014-02-05 05:54:25 +00:00
|
|
|
* @copyright 2014 Photon Storm Ltd.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
2013-08-31 20:50:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2013-10-03 01:38:35 +00:00
|
|
|
* A collection of methods for displaying debug information about game objects. Phaser.Debug requires a CANVAS game type in order to render, so if you've got
|
|
|
|
* your game set to use Phaser.AUTO then swap it for Phaser.CANVAS to ensure WebGL doesn't kick in, then the Debug functions will all display.
|
2013-08-31 20:50:34 +00:00
|
|
|
*
|
2013-10-01 12:54:29 +00:00
|
|
|
* @class Phaser.Utils.Debug
|
|
|
|
* @constructor
|
|
|
|
* @param {Phaser.Game} game - A reference to the currently running game.
|
2013-08-31 20:50:34 +00:00
|
|
|
*/
|
|
|
|
Phaser.Utils.Debug = function (game) {
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-11-25 04:40:04 +00:00
|
|
|
* @property {Phaser.Game} game - A reference to the currently running Game.
|
|
|
|
*/
|
2013-08-31 20:50:34 +00:00
|
|
|
this.game = game;
|
2013-10-01 12:54:29 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
2014-03-02 20:51:44 +00:00
|
|
|
* @property {PIXI.Sprite} sprite - If debugging in WebGL mode we need this.
|
2013-11-25 04:40:04 +00:00
|
|
|
*/
|
2014-03-02 20:51:44 +00:00
|
|
|
this.sprite = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {HTMLCanvasElement} canvas - The canvas to which this BitmapData draws.
|
|
|
|
*/
|
|
|
|
this.canvas = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {PIXI.BaseTexture} baseTexture - Required Pixi var.
|
|
|
|
*/
|
|
|
|
this.baseTexture = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {PIXI.Texture} texture - Required Pixi var.
|
|
|
|
*/
|
|
|
|
this.texture = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Phaser.Frame} textureFrame - Dimensions of the renderable area.
|
|
|
|
*/
|
|
|
|
this.textureFrame = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {CanvasRenderingContext2D} context - The 2d context of the canvas.
|
|
|
|
*/
|
|
|
|
this.context = null;
|
2013-08-31 20:50:34 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* @property {string} font - The font that the debug information is rendered in.
|
|
|
|
* @default '14px Courier'
|
|
|
|
*/
|
2013-09-11 15:25:46 +00:00
|
|
|
this.font = '14px Courier';
|
2013-10-01 12:54:29 +00:00
|
|
|
|
2014-01-02 23:28:22 +00:00
|
|
|
/**
|
|
|
|
* @property {number} columnWidth - The spacing between columns.
|
|
|
|
*/
|
|
|
|
this.columnWidth = 100;
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* @property {number} lineHeight - The line height between the debug text.
|
|
|
|
*/
|
2013-09-11 15:25:46 +00:00
|
|
|
this.lineHeight = 16;
|
2013-10-01 12:54:29 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* @property {boolean} renderShadow - Should the text be rendered with a slight shadow? Makes it easier to read on different types of background.
|
|
|
|
*/
|
2013-09-11 15:25:46 +00:00
|
|
|
this.renderShadow = true;
|
2013-10-01 12:54:29 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* @property {Context} currentX - The current X position the debug information will be rendered at.
|
|
|
|
* @default
|
|
|
|
*/
|
2013-09-11 15:25:46 +00:00
|
|
|
this.currentX = 0;
|
2013-10-01 12:54:29 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* @property {number} currentY - The current Y position the debug information will be rendered at.
|
|
|
|
* @default
|
|
|
|
*/
|
2013-09-11 15:25:46 +00:00
|
|
|
this.currentY = 0;
|
2013-10-01 12:54:29 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* @property {number} currentAlpha - The current alpha the debug information will be rendered at.
|
|
|
|
* @default
|
|
|
|
*/
|
2013-09-11 15:25:46 +00:00
|
|
|
this.currentAlpha = 1;
|
|
|
|
|
2014-03-02 20:51:44 +00:00
|
|
|
if (this.game.renderType === Phaser.CANVAS)
|
|
|
|
{
|
|
|
|
this.context = this.game.context;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.canvas = Phaser.Canvas.create(this.game.width, this.game.height, '', true);
|
|
|
|
this.context = this.canvas.getContext('2d');
|
|
|
|
this.context.fillStyle = '#ff0000';
|
|
|
|
this.context.fillRect(0,0,400,400);
|
|
|
|
this.baseTexture = new PIXI.BaseTexture(this.canvas);
|
|
|
|
this.texture = new PIXI.Texture(this.baseTexture);
|
|
|
|
this.textureFrame = new Phaser.Frame(0, 0, 0, this.game.width, this.game.height, 'debug', game.rnd.uuid());
|
|
|
|
this.sprite = this.game.make.image(0, 0, this.texture, this.textureFrame);
|
|
|
|
|
|
|
|
this.game.stage.addChild(this.sprite);
|
|
|
|
}
|
|
|
|
|
2013-08-31 20:50:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Phaser.Utils.Debug.prototype = {
|
|
|
|
|
|
|
|
/**
|
2013-10-03 01:38:35 +00:00
|
|
|
* Internal method that resets and starts the debug output values.
|
|
|
|
* @method Phaser.Utils.Debug#start
|
2014-01-02 23:28:22 +00:00
|
|
|
* @param {number} [x=0] - The X value the debug info will start from.
|
|
|
|
* @param {number} [y=0] - The Y value the debug info will start from.
|
|
|
|
* @param {string} [color='rgb(255,255,255)'] - The color the debug text will drawn in.
|
|
|
|
* @param {number} [columnWidth=0] - The spacing between columns.
|
2013-08-31 20:50:34 +00:00
|
|
|
*/
|
2014-01-02 23:28:22 +00:00
|
|
|
start: function (x, y, color, columnWidth) {
|
2013-08-31 20:50:34 +00:00
|
|
|
|
2014-02-19 15:43:05 +00:00
|
|
|
if (this.context === null)
|
2013-08-31 20:50:34 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-10-15 14:24:07 +00:00
|
|
|
if (typeof x !== 'number') { x = 0; }
|
|
|
|
if (typeof y !== 'number') { y = 0; }
|
|
|
|
color = color || 'rgb(255,255,255)';
|
2014-01-02 23:28:22 +00:00
|
|
|
if (typeof columnWidth === 'undefined') { columnWidth = 0; }
|
2013-08-31 20:50:34 +00:00
|
|
|
|
2013-10-15 14:24:07 +00:00
|
|
|
this.currentX = x;
|
|
|
|
this.currentY = y;
|
|
|
|
this.currentColor = color;
|
2013-09-08 00:24:59 +00:00
|
|
|
this.currentAlpha = this.context.globalAlpha;
|
2014-01-02 23:28:22 +00:00
|
|
|
this.columnWidth = columnWidth;
|
2013-09-08 00:24:59 +00:00
|
|
|
|
2013-08-31 20:50:34 +00:00
|
|
|
this.context.save();
|
|
|
|
this.context.setTransform(1, 0, 0, 1, 0, 0);
|
2014-01-29 00:21:28 +00:00
|
|
|
this.context.strokeStyle = color;
|
2013-08-31 20:50:34 +00:00
|
|
|
this.context.fillStyle = color;
|
|
|
|
this.context.font = this.font;
|
2013-09-08 00:24:59 +00:00
|
|
|
this.context.globalAlpha = 1;
|
2013-08-31 20:50:34 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-03 01:38:35 +00:00
|
|
|
/**
|
|
|
|
* Internal method that stops the debug output.
|
|
|
|
* @method Phaser.Utils.Debug#stop
|
|
|
|
*/
|
2013-08-31 20:50:34 +00:00
|
|
|
stop: function () {
|
|
|
|
|
|
|
|
this.context.restore();
|
2013-09-08 00:24:59 +00:00
|
|
|
this.context.globalAlpha = this.currentAlpha;
|
2013-08-31 20:50:34 +00:00
|
|
|
|
2014-03-02 20:51:44 +00:00
|
|
|
if (this.sprite)
|
|
|
|
{
|
|
|
|
this.context.fillStyle = '#ff0000';
|
|
|
|
this.context.fillRect(0,0,400,400);
|
|
|
|
PIXI.updateWebGLTexture(this.baseTexture, this.game.renderer.gl);
|
|
|
|
}
|
|
|
|
|
2013-08-31 20:50:34 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal method that outputs a single line of text.
|
2013-10-03 01:38:35 +00:00
|
|
|
* @method Phaser.Utils.Debug#line
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {string} text - The line of text to draw.
|
2014-01-02 23:28:22 +00:00
|
|
|
* @param {number} [x] - The X value the debug info will start from.
|
|
|
|
* @param {number} [y] - The Y value the debug info will start from.
|
2013-08-31 20:50:34 +00:00
|
|
|
*/
|
|
|
|
line: function (text, x, y) {
|
|
|
|
|
2014-02-19 15:43:05 +00:00
|
|
|
if (this.context === null)
|
2013-08-31 20:50:34 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-01-02 23:28:22 +00:00
|
|
|
if (typeof x !== 'undefined') { this.currentX = x; }
|
|
|
|
if (typeof y !== 'undefined') { this.currentY = y; }
|
2013-08-31 20:50:34 +00:00
|
|
|
|
|
|
|
if (this.renderShadow)
|
|
|
|
{
|
|
|
|
this.context.fillStyle = 'rgb(0,0,0)';
|
|
|
|
this.context.fillText(text, this.currentX + 1, this.currentY + 1);
|
|
|
|
this.context.fillStyle = this.currentColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.context.fillText(text, this.currentX, this.currentY);
|
|
|
|
this.currentY += this.lineHeight;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2014-01-02 23:28:22 +00:00
|
|
|
/**
|
|
|
|
* Internal method that outputs a single line of text split over as many columns as needed, one per parameter.
|
|
|
|
* @method Phaser.Utils.Debug#splitline
|
|
|
|
* @param {string} text - The text to render. You can have as many columns of text as you want, just pass them as additional parameters.
|
|
|
|
*/
|
|
|
|
splitline: function (text) {
|
|
|
|
|
2014-02-19 15:43:05 +00:00
|
|
|
if (this.context === null)
|
2014-01-02 23:28:22 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var x = this.currentX;
|
|
|
|
|
|
|
|
for (var i = 0; i < arguments.length; i++)
|
|
|
|
{
|
|
|
|
if (this.renderShadow)
|
|
|
|
{
|
|
|
|
this.context.fillStyle = 'rgb(0,0,0)';
|
|
|
|
this.context.fillText(arguments[i], x + 1, this.currentY + 1);
|
|
|
|
this.context.fillStyle = this.currentColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.context.fillText(arguments[i], x, this.currentY);
|
|
|
|
|
|
|
|
x += this.columnWidth;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.currentY += this.lineHeight;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-08-31 20:50:34 +00:00
|
|
|
/**
|
2013-10-03 01:38:35 +00:00
|
|
|
* Render Sound information, including decoded state, duration, volume and more.
|
|
|
|
* @method Phaser.Utils.Debug#renderSoundInfo
|
|
|
|
* @param {Phaser.Sound} sound - The sound object to debug.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {number} x - X position of the debug info to be rendered.
|
|
|
|
* @param {number} y - Y position of the debug info to be rendered.
|
2013-10-03 01:38:35 +00:00
|
|
|
* @param {string} [color='rgb(255,255,255)'] - color of the debug info to be rendered. (format is css color string).
|
2013-08-31 20:50:34 +00:00
|
|
|
*/
|
|
|
|
renderSoundInfo: function (sound, x, y, color) {
|
|
|
|
|
2014-02-19 15:43:05 +00:00
|
|
|
if (this.context === null)
|
2013-08-31 20:50:34 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
color = color || 'rgb(255,255,255)';
|
|
|
|
|
|
|
|
this.start(x, y, color);
|
2013-09-10 15:46:39 +00:00
|
|
|
this.line('Sound: ' + sound.key + ' Locked: ' + sound.game.sound.touchLocked);
|
|
|
|
this.line('Is Ready?: ' + this.game.cache.isSoundReady(sound.key) + ' Pending Playback: ' + sound.pendingPlayback);
|
2013-08-31 20:50:34 +00:00
|
|
|
this.line('Decoded: ' + sound.isDecoded + ' Decoding: ' + sound.isDecoding);
|
|
|
|
this.line('Total Duration: ' + sound.totalDuration + ' Playing: ' + sound.isPlaying);
|
|
|
|
this.line('Time: ' + sound.currentTime);
|
|
|
|
this.line('Volume: ' + sound.volume + ' Muted: ' + sound.mute);
|
|
|
|
this.line('WebAudio: ' + sound.usingWebAudio + ' Audio: ' + sound.usingAudioTag);
|
|
|
|
|
|
|
|
if (sound.currentMarker !== '')
|
|
|
|
{
|
|
|
|
this.line('Marker: ' + sound.currentMarker + ' Duration: ' + sound.duration);
|
|
|
|
this.line('Start: ' + sound.markers[sound.currentMarker].start + ' Stop: ' + sound.markers[sound.currentMarker].stop);
|
|
|
|
this.line('Position: ' + sound.position);
|
|
|
|
}
|
|
|
|
|
2013-09-03 00:24:16 +00:00
|
|
|
this.stop();
|
|
|
|
|
2013-08-31 20:50:34 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2013-10-03 01:38:35 +00:00
|
|
|
* Render camera information including dimensions and location.
|
|
|
|
* @method Phaser.Utils.Debug#renderCameraInfo
|
|
|
|
* @param {Phaser.Camera} camera - Description.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {number} x - X position of the debug info to be rendered.
|
|
|
|
* @param {number} y - Y position of the debug info to be rendered.
|
2013-10-03 01:38:35 +00:00
|
|
|
* @param {string} [color='rgb(255,255,255)'] - color of the debug info to be rendered. (format is css color string).
|
2013-08-31 20:50:34 +00:00
|
|
|
*/
|
|
|
|
renderCameraInfo: function (camera, x, y, color) {
|
|
|
|
|
2014-02-19 15:43:05 +00:00
|
|
|
if (this.context === null)
|
2013-08-31 20:50:34 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-10-03 01:38:35 +00:00
|
|
|
color = color || 'rgb(255,255,255)';
|
2013-08-31 20:50:34 +00:00
|
|
|
|
|
|
|
this.start(x, y, color);
|
|
|
|
this.line('Camera (' + camera.width + ' x ' + camera.height + ')');
|
|
|
|
this.line('X: ' + camera.x + ' Y: ' + camera.y);
|
2013-10-09 03:31:08 +00:00
|
|
|
this.line('Bounds x: ' + camera.bounds.x + ' Y: ' + camera.bounds.y + ' w: ' + camera.bounds.width + ' h: ' + camera.bounds.height);
|
|
|
|
this.line('View x: ' + camera.view.x + ' Y: ' + camera.view.y + ' w: ' + camera.view.width + ' h: ' + camera.view.height);
|
2013-08-31 20:50:34 +00:00
|
|
|
this.stop();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2013-10-03 01:38:35 +00:00
|
|
|
* Renders the Pointer.circle object onto the stage in green if down or red if up along with debug text.
|
2013-11-26 05:13:56 +00:00
|
|
|
* @method Phaser.Utils.Debug#renderPointer
|
2013-10-03 01:38:35 +00:00
|
|
|
* @param {Phaser.Pointer} pointer - Description.
|
|
|
|
* @param {boolean} [hideIfUp=false] - Doesn't render the circle if the pointer is up.
|
|
|
|
* @param {string} [downColor='rgba(0,255,0,0.5)'] - The color the circle is rendered in if down.
|
|
|
|
* @param {string} [upColor='rgba(255,0,0,0.5)'] - The color the circle is rendered in if up (and hideIfUp is false).
|
|
|
|
* @param {string} [color='rgb(255,255,255)'] - color of the debug info to be rendered. (format is css color string).
|
2013-08-31 20:50:34 +00:00
|
|
|
*/
|
|
|
|
renderPointer: function (pointer, hideIfUp, downColor, upColor, color) {
|
|
|
|
|
2014-02-19 15:43:05 +00:00
|
|
|
if (this.context === null || pointer == null)
|
2013-08-31 20:50:34 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-10-03 01:38:35 +00:00
|
|
|
if (typeof hideIfUp === 'undefined') { hideIfUp = false; }
|
2013-09-08 21:38:19 +00:00
|
|
|
downColor = downColor || 'rgba(0,255,0,0.5)';
|
|
|
|
upColor = upColor || 'rgba(255,0,0,0.5)';
|
|
|
|
color = color || 'rgb(255,255,255)';
|
2013-08-31 20:50:34 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
if (hideIfUp === true && pointer.isUp === true)
|
2013-08-31 20:50:34 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-09-08 21:38:19 +00:00
|
|
|
this.start(pointer.x, pointer.y - 100, color);
|
2013-08-31 20:50:34 +00:00
|
|
|
this.context.beginPath();
|
|
|
|
this.context.arc(pointer.x, pointer.y, pointer.circle.radius, 0, Math.PI * 2);
|
|
|
|
|
|
|
|
if (pointer.active)
|
|
|
|
{
|
|
|
|
this.context.fillStyle = downColor;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.context.fillStyle = upColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.context.fill();
|
|
|
|
this.context.closePath();
|
|
|
|
|
|
|
|
// Render the points
|
|
|
|
this.context.beginPath();
|
|
|
|
this.context.moveTo(pointer.positionDown.x, pointer.positionDown.y);
|
|
|
|
this.context.lineTo(pointer.position.x, pointer.position.y);
|
|
|
|
this.context.lineWidth = 2;
|
|
|
|
this.context.stroke();
|
|
|
|
this.context.closePath();
|
|
|
|
|
|
|
|
// Render the text
|
2013-09-08 21:38:19 +00:00
|
|
|
// this.start(pointer.x, pointer.y - 100, color);
|
2013-08-31 20:50:34 +00:00
|
|
|
this.line('ID: ' + pointer.id + " Active: " + pointer.active);
|
|
|
|
this.line('World X: ' + pointer.worldX + " World Y: " + pointer.worldY);
|
|
|
|
this.line('Screen X: ' + pointer.x + " Screen Y: " + pointer.y);
|
|
|
|
this.line('Duration: ' + pointer.duration + " ms");
|
2014-02-28 03:09:04 +00:00
|
|
|
this.line('is Down: ' + pointer.isDown + " is Up: " + pointer.isUp);
|
2013-09-08 21:38:19 +00:00
|
|
|
this.stop();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2013-10-01 12:54:29 +00:00
|
|
|
* Render Sprite Input Debug information.
|
2013-10-03 01:38:35 +00:00
|
|
|
* @method Phaser.Utils.Debug#renderSpriteInputInfo
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {Phaser.Sprite} sprite - The sprite to be rendered.
|
|
|
|
* @param {number} x - X position of the debug info to be rendered.
|
|
|
|
* @param {number} y - Y position of the debug info to be rendered.
|
2013-10-03 01:38:35 +00:00
|
|
|
* @param {string} [color='rgb(255,255,255)'] - color of the debug info to be rendered. (format is css color string).
|
2013-11-25 04:40:04 +00:00
|
|
|
*/
|
2013-09-08 21:38:19 +00:00
|
|
|
renderSpriteInputInfo: function (sprite, x, y, color) {
|
|
|
|
|
2014-02-19 15:43:05 +00:00
|
|
|
if (this.context === null)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-09-08 21:38:19 +00:00
|
|
|
color = color || 'rgb(255,255,255)';
|
|
|
|
|
|
|
|
this.start(x, y, color);
|
|
|
|
this.line('Sprite Input: (' + sprite.width + ' x ' + sprite.height + ')');
|
|
|
|
this.line('x: ' + sprite.input.pointerX().toFixed(1) + ' y: ' + sprite.input.pointerY().toFixed(1));
|
|
|
|
this.line('over: ' + sprite.input.pointerOver() + ' duration: ' + sprite.input.overDuration().toFixed(0));
|
|
|
|
this.line('down: ' + sprite.input.pointerDown() + ' duration: ' + sprite.input.downDuration().toFixed(0));
|
|
|
|
this.line('just over: ' + sprite.input.justOver() + ' just out: ' + sprite.input.justOut());
|
|
|
|
this.stop();
|
2013-08-31 20:50:34 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2014-02-24 20:33:22 +00:00
|
|
|
/**
|
|
|
|
* Renders Phaser.Key object information.
|
|
|
|
* @method Phaser.Utils.Debug#renderKey
|
|
|
|
* @param {Phaser.Key} key - The Key to render the information for.
|
|
|
|
* @param {number} x - X position of the debug info to be rendered.
|
|
|
|
* @param {number} y - Y position of the debug info to be rendered.
|
|
|
|
* @param {string} [color='rgb(255,255,255)'] - color of the debug info to be rendered. (format is css color string).
|
|
|
|
*/
|
2014-02-24 15:58:02 +00:00
|
|
|
renderKey: function (key, x, y, color) {
|
|
|
|
|
|
|
|
if (this.context === null)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
color = color || 'rgb(255,255,255)';
|
|
|
|
|
|
|
|
this.start(x, y, color, 150);
|
|
|
|
|
|
|
|
this.splitline('Key:', key.keyCode, 'isDown:', key.isDown);
|
|
|
|
this.splitline('justPressed:', key.justPressed(), 'justReleased:', key.justReleased());
|
|
|
|
this.splitline('Time Down:', key.timeDown.toFixed(0), 'duration:', key.duration.toFixed(0));
|
|
|
|
|
|
|
|
this.stop();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-08-31 20:50:34 +00:00
|
|
|
/**
|
|
|
|
* Render debug information about the Input object.
|
2013-10-03 01:38:35 +00:00
|
|
|
* @method Phaser.Utils.Debug#renderInputInfo
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {number} x - X position of the debug info to be rendered.
|
|
|
|
* @param {number} y - Y position of the debug info to be rendered.
|
2013-10-03 01:38:35 +00:00
|
|
|
* @param {string} [color='rgb(255,255,255)'] - color of the debug info to be rendered. (format is css color string).
|
2013-08-31 20:50:34 +00:00
|
|
|
*/
|
|
|
|
renderInputInfo: function (x, y, color) {
|
|
|
|
|
2014-02-19 15:43:05 +00:00
|
|
|
if (this.context === null)
|
2013-08-31 20:50:34 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
color = color || 'rgb(255,255,0)';
|
|
|
|
|
|
|
|
this.start(x, y, color);
|
|
|
|
this.line('Input');
|
|
|
|
this.line('X: ' + this.game.input.x + ' Y: ' + this.game.input.y);
|
|
|
|
this.line('World X: ' + this.game.input.worldX + ' World Y: ' + this.game.input.worldY);
|
|
|
|
this.line('Scale X: ' + this.game.input.scale.x.toFixed(1) + ' Scale Y: ' + this.game.input.scale.x.toFixed(1));
|
|
|
|
this.line('Screen X: ' + this.game.input.activePointer.screenX + ' Screen Y: ' + this.game.input.activePointer.screenY);
|
|
|
|
this.stop();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2014-02-21 15:34:15 +00:00
|
|
|
/**
|
|
|
|
* Renders the Sprites bounds. Note: This is really expensive as it has to calculate the bounds every time you call it!
|
|
|
|
* @method Phaser.Utils.Debug#renderSpriteBounds
|
|
|
|
* @param {Phaser.Sprite} sprite - Description.
|
|
|
|
* @param {string} [color] - Color of the debug info to be rendered (format is css color string).
|
|
|
|
* @param {boolean} [filled=true] - Render the rectangle as a fillRect (default, true) or a strokeRect (false)
|
|
|
|
*/
|
|
|
|
renderSpriteBounds: function (sprite, color, filled) {
|
|
|
|
|
|
|
|
var bounds = sprite.getBounds();
|
|
|
|
|
|
|
|
this.renderRectangle(bounds, color, filled);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-08-31 20:50:34 +00:00
|
|
|
/**
|
2013-10-03 01:38:35 +00:00
|
|
|
* Render debug infos (including name, bounds info, position and some other properties) about the Sprite.
|
|
|
|
* @method Phaser.Utils.Debug#renderSpriteInfo
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {Phaser.Sprite} sprite - Description.
|
|
|
|
* @param {number} x - X position of the debug info to be rendered.
|
|
|
|
* @param {number} y - Y position of the debug info to be rendered.
|
2013-10-03 01:38:35 +00:00
|
|
|
* @param {string} [color='rgb(255,255,255)'] - color of the debug info to be rendered. (format is css color string).
|
2013-08-31 20:50:34 +00:00
|
|
|
*/
|
|
|
|
renderSpriteInfo: function (sprite, x, y, color) {
|
|
|
|
|
2014-02-19 15:43:05 +00:00
|
|
|
if (this.context === null)
|
2013-08-31 20:50:34 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
color = color || 'rgb(255, 255, 255)';
|
|
|
|
|
|
|
|
this.start(x, y, color);
|
|
|
|
|
|
|
|
this.line('Sprite: ' + ' (' + sprite.width + ' x ' + sprite.height + ') anchor: ' + sprite.anchor.x + ' x ' + sprite.anchor.y);
|
2013-10-04 18:00:55 +00:00
|
|
|
this.line('x: ' + sprite.x.toFixed(1) + ' y: ' + sprite.y.toFixed(1));
|
2013-10-08 20:09:46 +00:00
|
|
|
this.line('angle: ' + sprite.angle.toFixed(1) + ' rotation: ' + sprite.rotation.toFixed(1));
|
2013-10-04 18:00:55 +00:00
|
|
|
this.line('visible: ' + sprite.visible + ' in camera: ' + sprite.inCamera);
|
2014-02-21 15:50:02 +00:00
|
|
|
|
2013-10-15 14:24:07 +00:00
|
|
|
this.stop();
|
2013-08-31 20:50:34 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2014-01-31 05:42:20 +00:00
|
|
|
* Renders the sprite coordinates in local, positional and world space.
|
|
|
|
* @method Phaser.Utils.Debug#renderSpriteCoords
|
|
|
|
* @param {Phaser.Sprite} line - The sprite to inspect.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {number} x - X position of the debug info to be rendered.
|
|
|
|
* @param {number} y - Y position of the debug info to be rendered.
|
2013-10-03 01:38:35 +00:00
|
|
|
* @param {string} [color='rgb(255,255,255)'] - color of the debug info to be rendered. (format is css color string).
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-10-10 08:03:38 +00:00
|
|
|
renderSpriteCoords: function (sprite, x, y, color) {
|
|
|
|
|
2014-02-19 15:43:05 +00:00
|
|
|
if (this.context === null)
|
2013-10-10 08:03:38 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
color = color || 'rgb(255, 255, 255)';
|
|
|
|
|
2014-01-29 17:10:13 +00:00
|
|
|
this.start(x, y, color, 100);
|
2013-10-10 08:03:38 +00:00
|
|
|
|
2013-10-29 04:07:26 +00:00
|
|
|
if (sprite.name)
|
|
|
|
{
|
|
|
|
this.line(sprite.name);
|
|
|
|
}
|
|
|
|
|
2014-01-29 17:10:13 +00:00
|
|
|
this.splitline('x:', sprite.x.toFixed(2), 'y:', sprite.y.toFixed(2));
|
|
|
|
this.splitline('pos x:', sprite.position.x.toFixed(2), 'pos y:', sprite.position.y.toFixed(2));
|
|
|
|
this.splitline('world x:', sprite.world.x.toFixed(2), 'world y:', sprite.world.y.toFixed(2));
|
2013-10-10 08:03:38 +00:00
|
|
|
|
|
|
|
this.stop();
|
2014-01-29 00:21:28 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders a Line object in the given color.
|
|
|
|
* @method Phaser.Utils.Debug#renderLine
|
|
|
|
* @param {Phaser.Line} line - The Line to render.
|
|
|
|
* @param {string} [color='rgb(255,255,255)'] - color of the debug info to be rendered. (format is css color string).
|
|
|
|
*/
|
|
|
|
renderLine: function (line, color) {
|
|
|
|
|
2014-02-19 15:43:05 +00:00
|
|
|
if (this.context === null)
|
2014-01-29 00:21:28 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
color = color || 'rgb(255, 255, 255)';
|
|
|
|
|
|
|
|
this.start(0, 0, color);
|
2014-01-31 02:06:45 +00:00
|
|
|
this.context.lineWidth = 1;
|
2014-01-29 00:21:28 +00:00
|
|
|
this.context.beginPath();
|
2014-01-31 02:06:45 +00:00
|
|
|
this.context.moveTo(line.start.x + 0.5, line.start.y + 0.5);
|
|
|
|
this.context.lineTo(line.end.x + 0.5, line.end.y + 0.5);
|
2014-01-29 00:21:28 +00:00
|
|
|
this.context.closePath();
|
|
|
|
this.context.stroke();
|
|
|
|
this.stop();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders Line information in the given color.
|
|
|
|
* @method Phaser.Utils.Debug#renderLineInfo
|
|
|
|
* @param {Phaser.Line} line - The Line to render.
|
|
|
|
* @param {number} x - X position of the debug info to be rendered.
|
|
|
|
* @param {number} y - Y position of the debug info to be rendered.
|
|
|
|
* @param {string} [color='rgb(255,255,255)'] - color of the debug info to be rendered. (format is css color string).
|
|
|
|
*/
|
|
|
|
renderLineInfo: function (line, x, y, color) {
|
|
|
|
|
2014-02-19 15:43:05 +00:00
|
|
|
if (this.context === null)
|
2014-01-29 00:21:28 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
color = color || 'rgb(255, 255, 255)';
|
|
|
|
|
|
|
|
this.start(x, y, color, 80);
|
|
|
|
this.splitline('start.x:', line.start.x.toFixed(2), 'start.y:', line.start.y.toFixed(2));
|
|
|
|
this.splitline('end.x:', line.end.x.toFixed(2), 'end.y:', line.end.y.toFixed(2));
|
|
|
|
this.splitline('length:', line.length.toFixed(2), 'angle:', line.angle);
|
|
|
|
this.stop();
|
2013-10-10 08:03:38 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-10-03 01:38:35 +00:00
|
|
|
* Renders Point coordinates in the given color.
|
|
|
|
* @method Phaser.Utils.Debug#renderPointInfo
|
|
|
|
* @param {Phaser.Point} sprite - Description.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {number} x - X position of the debug info to be rendered.
|
|
|
|
* @param {number} y - Y position of the debug info to be rendered.
|
2013-10-03 01:38:35 +00:00
|
|
|
* @param {string} [color='rgb(255,255,255)'] - color of the debug info to be rendered. (format is css color string).
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-09-01 04:22:08 +00:00
|
|
|
renderPointInfo: function (point, x, y, color) {
|
|
|
|
|
2014-02-19 15:43:05 +00:00
|
|
|
if (this.context === null)
|
2013-09-01 04:22:08 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
color = color || 'rgb(255, 255, 255)';
|
|
|
|
|
|
|
|
this.start(x, y, color);
|
|
|
|
this.line('px: ' + point.x.toFixed(1) + ' py: ' + point.y.toFixed(1));
|
|
|
|
this.stop();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-10-03 01:38:35 +00:00
|
|
|
* Renders a single pixel.
|
|
|
|
* @method Phaser.Utils.Debug#renderPixel
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {number} x - X position of the debug info to be rendered.
|
|
|
|
* @param {number} y - Y position of the debug info to be rendered.
|
2013-10-03 01:38:35 +00:00
|
|
|
* @param {string} [color] - Color of the debug info to be rendered (format is css color string).
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-10-03 01:38:35 +00:00
|
|
|
renderPixel: function (x, y, color) {
|
2013-08-31 20:50:34 +00:00
|
|
|
|
2014-02-19 15:43:05 +00:00
|
|
|
if (this.context === null)
|
2013-08-31 20:50:34 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-10-03 01:38:35 +00:00
|
|
|
color = color || 'rgba(0,255,0,1)';
|
2013-08-31 20:50:34 +00:00
|
|
|
|
|
|
|
this.start();
|
2013-10-03 01:38:35 +00:00
|
|
|
this.context.fillStyle = color;
|
2013-08-31 20:50:34 +00:00
|
|
|
this.context.fillRect(x, y, 2, 2);
|
|
|
|
this.stop();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-10-03 01:38:35 +00:00
|
|
|
* Renders a Point object.
|
|
|
|
* @method Phaser.Utils.Debug#renderPoint
|
|
|
|
* @param {Phaser.Point} point - The Point to render.
|
|
|
|
* @param {string} [color] - Color of the debug info to be rendered (format is css color string).
|
|
|
|
*/
|
|
|
|
renderPoint: function (point, color) {
|
2013-08-31 20:50:34 +00:00
|
|
|
|
2014-02-19 15:43:05 +00:00
|
|
|
if (this.context === null)
|
2013-08-31 20:50:34 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-10-03 01:38:35 +00:00
|
|
|
color = color || 'rgba(0,255,0,1)';
|
2013-08-31 20:50:34 +00:00
|
|
|
|
|
|
|
this.start();
|
2013-10-03 01:38:35 +00:00
|
|
|
this.context.fillStyle = color;
|
2013-08-31 20:50:34 +00:00
|
|
|
this.context.fillRect(point.x, point.y, 4, 4);
|
|
|
|
this.stop();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-10-03 01:38:35 +00:00
|
|
|
* Renders a Rectangle.
|
|
|
|
* @method Phaser.Utils.Debug#renderRectangle
|
|
|
|
* @param {Phaser.Rectangle} rect - The Rectangle to render.
|
|
|
|
* @param {string} [color] - Color of the debug info to be rendered (format is css color string).
|
2014-02-07 00:57:41 +00:00
|
|
|
* @param {boolean} [filled=true] - Render the rectangle as a fillRect (default, true) or a strokeRect (false)
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2014-02-07 00:57:41 +00:00
|
|
|
renderRectangle: function (rect, color, filled) {
|
2013-08-31 20:50:34 +00:00
|
|
|
|
2014-02-19 15:43:05 +00:00
|
|
|
if (this.context === null)
|
2013-08-31 20:50:34 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-02-07 00:57:41 +00:00
|
|
|
if (typeof filled === 'undefined') { filled = true; }
|
|
|
|
|
2013-10-03 01:38:35 +00:00
|
|
|
color = color || 'rgba(0,255,0,0.3)';
|
2013-08-31 20:50:34 +00:00
|
|
|
|
|
|
|
this.start();
|
2014-02-07 00:57:41 +00:00
|
|
|
|
|
|
|
if (filled)
|
|
|
|
{
|
|
|
|
this.context.fillStyle = color;
|
|
|
|
this.context.fillRect(rect.x, rect.y, rect.width, rect.height);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.context.strokeStyle = color;
|
|
|
|
this.context.strokeRect(rect.x, rect.y, rect.width, rect.height);
|
|
|
|
}
|
|
|
|
|
2013-08-31 20:50:34 +00:00
|
|
|
this.stop();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-10-03 01:38:35 +00:00
|
|
|
* Renders a Circle.
|
|
|
|
* @method Phaser.Utils.Debug#renderCircle
|
|
|
|
* @param {Phaser.Circle} circle - The Circle to render.
|
|
|
|
* @param {string} [color] - Color of the debug info to be rendered (format is css color string).
|
|
|
|
*/
|
|
|
|
renderCircle: function (circle, color) {
|
2013-08-31 20:50:34 +00:00
|
|
|
|
2014-02-19 15:43:05 +00:00
|
|
|
if (this.context === null)
|
2013-08-31 20:50:34 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-10-03 01:38:35 +00:00
|
|
|
color = color || 'rgba(0,255,0,0.3)';
|
2013-08-31 20:50:34 +00:00
|
|
|
|
|
|
|
this.start();
|
2013-08-31 23:35:29 +00:00
|
|
|
this.context.beginPath();
|
2013-10-03 01:38:35 +00:00
|
|
|
this.context.fillStyle = color;
|
2013-08-31 20:50:34 +00:00
|
|
|
this.context.arc(circle.x, circle.y, circle.radius, 0, Math.PI * 2, false);
|
|
|
|
this.context.fill();
|
2013-08-31 23:35:29 +00:00
|
|
|
this.context.closePath();
|
2013-08-31 20:50:34 +00:00
|
|
|
this.stop();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2013-10-01 12:54:29 +00:00
|
|
|
* Render text.
|
2013-10-03 01:38:35 +00:00
|
|
|
* @method Phaser.Utils.Debug#renderText
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {string} text - The line of text to draw.
|
2013-10-03 01:38:35 +00:00
|
|
|
* @param {number} x - X position of the debug info to be rendered.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {number} y - Y position of the debug info to be rendered.
|
|
|
|
* @param {string} [color] - Color of the debug info to be rendered (format is css color string).
|
|
|
|
* @param {string} font - The font of text to draw.
|
2013-11-25 04:40:04 +00:00
|
|
|
*/
|
2013-08-31 20:50:34 +00:00
|
|
|
renderText: function (text, x, y, color, font) {
|
|
|
|
|
2014-02-19 15:43:05 +00:00
|
|
|
if (this.context === null)
|
2013-08-31 20:50:34 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-09-04 12:54:55 +00:00
|
|
|
color = color || 'rgb(255,255,255)';
|
|
|
|
font = font || '16px Courier';
|
2013-08-31 20:50:34 +00:00
|
|
|
|
2013-09-01 01:28:51 +00:00
|
|
|
this.start();
|
2013-08-31 20:50:34 +00:00
|
|
|
this.context.font = font;
|
|
|
|
this.context.fillStyle = color;
|
|
|
|
this.context.fillText(text, x, y);
|
2013-09-01 01:28:51 +00:00
|
|
|
this.stop();
|
2013-08-31 20:50:34 +00:00
|
|
|
|
2013-10-02 10:22:20 +00:00
|
|
|
},
|
|
|
|
|
2014-01-28 05:01:17 +00:00
|
|
|
/**
|
2014-02-14 22:30:24 +00:00
|
|
|
* Render Sprite Body Physics Data as text.
|
|
|
|
* @method Phaser.Utils.Debug#renderBodyInfo
|
|
|
|
* @param {Phaser.Sprite} sprite - The sprite to be rendered.
|
|
|
|
* @param {number} x - X position of the debug info to be rendered.
|
|
|
|
* @param {number} y - Y position of the debug info to be rendered.
|
|
|
|
* @param {string} [color='rgb(255,255,255)'] - color of the debug info to be rendered. (format is css color string).
|
2014-01-28 05:01:17 +00:00
|
|
|
*/
|
2014-02-14 22:30:24 +00:00
|
|
|
renderBodyInfo: function (sprite, x, y, color) {
|
2014-01-28 05:01:17 +00:00
|
|
|
|
2014-02-19 15:43:05 +00:00
|
|
|
if (this.context === null)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-01-28 05:01:17 +00:00
|
|
|
color = color || 'rgb(255,255,255)';
|
|
|
|
|
2014-02-14 22:30:24 +00:00
|
|
|
this.start(x, y, color, 210);
|
2014-01-28 17:13:07 +00:00
|
|
|
|
2014-02-14 22:30:24 +00:00
|
|
|
this.splitline('x: ' + sprite.body.x.toFixed(2), 'y: ' + sprite.body.y.toFixed(2), 'width: ' + sprite.width, 'height: ' + sprite.height);
|
|
|
|
// this.splitline('speed: ' + sprite.body.speed.toFixed(2), 'angle: ' + sprite.body.angle.toFixed(2), 'linear damping: ' + sprite.body.linearDamping);
|
|
|
|
// this.splitline('blocked left: ' + sprite.body.blocked.left, 'right: ' + sprite.body.blocked.right, 'up: ' + sprite.body.blocked.up, 'down: ' + sprite.body.blocked.down);
|
|
|
|
// this.splitline('touching left: ' + sprite.body.touching.left, 'right: ' + sprite.body.touching.right, 'up: ' + sprite.body.touching.up, 'down: ' + sprite.body.touching.down);
|
|
|
|
// this.splitline('gravity x: ' + sprite.body.gravity.x, 'y: ' + sprite.body.gravity.y, 'world gravity x: ' + this.game.physics.gravity.x, 'y: ' + this.game.physics.gravity.y);
|
|
|
|
// this.splitline('acceleration x: ' + sprite.body.acceleration.x.toFixed(2), 'y: ' + sprite.body.acceleration.y.toFixed(2));
|
|
|
|
// this.splitline('velocity x: ' + sprite.body.velocity.x.toFixed(2), 'y: ' + sprite.body.velocity.y.toFixed(2), 'deltaX: ' + sprite.body.deltaX().toFixed(2), 'deltaY: ' + sprite.body.deltaY().toFixed(2));
|
|
|
|
// this.splitline('bounce x: ' + sprite.body.bounce.x.toFixed(2), 'y: ' + sprite.body.bounce.y.toFixed(2));
|
|
|
|
this.stop();
|
2014-01-28 05:01:17 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2014-02-12 05:34:31 +00:00
|
|
|
/**
|
2014-02-14 22:30:24 +00:00
|
|
|
* @method Phaser.Utils.Debug#renderPhysicsBody
|
2014-02-19 15:43:05 +00:00
|
|
|
* @param {Phaser.Physics.Body} body - The Phaser.Physics.Body instance to render all shapes from.
|
2014-02-12 05:34:31 +00:00
|
|
|
* @param {string} [color='rgb(255,255,255)'] - The color the polygon is stroked in.
|
|
|
|
*/
|
2014-02-19 15:43:05 +00:00
|
|
|
renderPhysicsBody: function (body, color) {
|
2014-02-12 05:34:31 +00:00
|
|
|
|
2014-02-19 15:43:05 +00:00
|
|
|
if (this.context === null)
|
2014-02-12 05:34:31 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
color = color || 'rgb(255,255,255)';
|
|
|
|
|
|
|
|
this.start(0, 0, color);
|
|
|
|
|
2014-02-17 17:54:10 +00:00
|
|
|
var shapes = body.data.shapes;
|
|
|
|
var shapeOffsets = body.data.shapeOffsets;
|
|
|
|
var shapeAngles = body.data.shapeAngles;
|
|
|
|
|
|
|
|
var i = shapes.length;
|
2014-02-19 15:43:05 +00:00
|
|
|
var x = this.game.math.p2pxi(body.data.position[0]) - this.game.camera.view.x;
|
|
|
|
var y = this.game.math.p2pxi(body.data.position[1]) - this.game.camera.view.y;
|
2014-02-14 22:30:24 +00:00
|
|
|
var angle = body.data.angle;
|
2014-02-12 05:34:31 +00:00
|
|
|
|
2014-02-14 22:30:24 +00:00
|
|
|
while (i--)
|
2014-02-12 05:34:31 +00:00
|
|
|
{
|
2014-02-17 17:54:10 +00:00
|
|
|
if (shapes[i] instanceof p2.Rectangle)
|
|
|
|
{
|
2014-02-18 03:01:51 +00:00
|
|
|
this.renderShapeRectangle(x, y, angle, shapes[i], shapeOffsets[i], shapeAngles[i]);
|
2014-02-17 17:54:10 +00:00
|
|
|
}
|
|
|
|
else if (shapes[i] instanceof p2.Line)
|
|
|
|
{
|
2014-02-18 03:01:51 +00:00
|
|
|
this.renderShapeLine(x, y, angle, shapes[i], shapeOffsets[i], shapeAngles[i]);
|
2014-02-17 17:54:10 +00:00
|
|
|
}
|
2014-02-19 15:43:05 +00:00
|
|
|
else if (shapes[i] instanceof p2.Convex)
|
2014-02-17 17:54:10 +00:00
|
|
|
{
|
2014-02-18 03:01:51 +00:00
|
|
|
this.renderShapeConvex(x, y, angle, shapes[i], shapeOffsets[i], shapeAngles[i]);
|
2014-02-17 17:54:10 +00:00
|
|
|
}
|
2014-02-19 15:43:05 +00:00
|
|
|
else if (shapes[i] instanceof p2.Circle)
|
|
|
|
{
|
|
|
|
this.renderShapeCircle(x, y, angle, shapes[i], shapeOffsets[i], shapeAngles[i]);
|
|
|
|
}
|
2014-02-12 05:34:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
this.stop();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2014-01-21 16:12:50 +00:00
|
|
|
/**
|
2014-02-19 15:43:05 +00:00
|
|
|
* Renders a p2.Rectangle shape. Do not call this directly - instead use Debug.renderPhysicsBody.
|
|
|
|
*
|
|
|
|
* @method Phaser.Utils.Debug#renderShapeRectangle
|
|
|
|
* @param {number} x - The x coordinate of the Shape to translate to.
|
|
|
|
* @param {number} y - The y coordinate of the Shape to translate to.
|
|
|
|
* @param {number} bodyAngle - The angle of the Body to rotate to.
|
2014-02-14 22:30:24 +00:00
|
|
|
* @param {p2.Shape} shape - The shape to render.
|
2014-02-19 15:43:05 +00:00
|
|
|
* @param {array} offset - The shape offset vector.
|
|
|
|
* @param {number} angle - The shape angle.
|
2014-01-21 16:12:50 +00:00
|
|
|
*/
|
2014-02-18 03:01:51 +00:00
|
|
|
renderShapeRectangle: function (x, y, bodyAngle, shape, offset, angle) {
|
2014-02-14 22:30:24 +00:00
|
|
|
|
|
|
|
var w = this.game.math.p2px(shape.width);
|
|
|
|
var h = this.game.math.p2px(shape.height);
|
|
|
|
var points = shape.vertices;
|
2014-01-21 16:12:50 +00:00
|
|
|
|
|
|
|
this.context.beginPath();
|
2014-02-14 22:30:24 +00:00
|
|
|
this.context.save();
|
2014-02-19 15:43:05 +00:00
|
|
|
this.context.translate(x + this.game.math.p2pxi(offset[0]), y + this.game.math.p2pxi(offset[1]));
|
2014-02-18 03:01:51 +00:00
|
|
|
this.context.rotate(bodyAngle + angle);
|
2014-02-14 22:30:24 +00:00
|
|
|
|
2014-02-19 15:43:05 +00:00
|
|
|
this.context.moveTo(this.game.math.p2pxi(points[0][0]), this.game.math.p2pxi(points[0][1]));
|
2014-01-21 16:12:50 +00:00
|
|
|
|
2014-01-23 21:45:35 +00:00
|
|
|
for (var i = 1; i < points.length; i++)
|
2014-01-21 16:12:50 +00:00
|
|
|
{
|
2014-02-19 15:43:05 +00:00
|
|
|
this.context.lineTo(this.game.math.p2pxi(points[i][0]), this.game.math.p2pxi(points[i][1]));
|
2014-01-21 16:12:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
this.context.closePath();
|
|
|
|
this.context.stroke();
|
2014-02-14 22:30:24 +00:00
|
|
|
this.context.restore();
|
2014-01-21 16:12:50 +00:00
|
|
|
|
2014-02-17 17:54:10 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2014-02-19 15:43:05 +00:00
|
|
|
* Renders a p2.Line shape. Do not call this directly - instead use Debug.renderPhysicsBody.
|
|
|
|
*
|
|
|
|
* @method Phaser.Utils.Debug#renderShapeLine
|
|
|
|
* @param {number} x - The x coordinate of the Shape to translate to.
|
|
|
|
* @param {number} y - The y coordinate of the Shape to translate to.
|
|
|
|
* @param {number} bodyAngle - The angle of the Body to rotate to.
|
2014-02-17 17:54:10 +00:00
|
|
|
* @param {p2.Shape} shape - The shape to render.
|
2014-02-19 15:43:05 +00:00
|
|
|
* @param {array} offset - The shape offset vector.
|
|
|
|
* @param {number} angle - The shape angle.
|
2014-02-17 17:54:10 +00:00
|
|
|
*/
|
2014-02-18 03:01:51 +00:00
|
|
|
renderShapeLine: function (x, y, bodyAngle, shape, offset, angle) {
|
2014-02-17 17:54:10 +00:00
|
|
|
|
|
|
|
this.context.beginPath();
|
|
|
|
this.context.save();
|
|
|
|
this.context.translate(x, y);
|
2014-02-18 03:01:51 +00:00
|
|
|
this.context.rotate(bodyAngle + angle);
|
2014-02-17 17:54:10 +00:00
|
|
|
this.context.lineWidth = 0.5;
|
|
|
|
this.context.moveTo(0, 0);
|
|
|
|
this.context.lineTo(this.game.math.p2px(shape.length), 0);
|
|
|
|
this.context.closePath();
|
|
|
|
this.context.stroke();
|
|
|
|
this.context.restore();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2014-02-19 15:43:05 +00:00
|
|
|
* Renders a convex shape. Do not call this directly - instead use Debug.renderPhysicsBody.
|
|
|
|
*
|
|
|
|
* @method Phaser.Utils.Debug#renderShapeConvex
|
|
|
|
* @param {number} x - The x coordinate of the Shape to translate to.
|
|
|
|
* @param {number} y - The y coordinate of the Shape to translate to.
|
|
|
|
* @param {number} bodyAngle - The angle of the Body to rotate to.
|
2014-02-17 17:54:10 +00:00
|
|
|
* @param {p2.Shape} shape - The shape to render.
|
2014-02-19 15:43:05 +00:00
|
|
|
* @param {array} offset - The shape offset vector.
|
|
|
|
* @param {number} angle - The shape angle.
|
2014-02-17 17:54:10 +00:00
|
|
|
*/
|
2014-02-18 03:01:51 +00:00
|
|
|
renderShapeConvex: function (x, y, bodyAngle, shape, offset, angle) {
|
2014-02-17 17:54:10 +00:00
|
|
|
|
|
|
|
var points = shape.vertices;
|
|
|
|
|
|
|
|
this.context.beginPath();
|
|
|
|
this.context.save();
|
2014-02-19 15:43:05 +00:00
|
|
|
this.context.translate(x + this.game.math.p2pxi(offset[0]), y + this.game.math.p2pxi(offset[1]));
|
2014-02-18 03:01:51 +00:00
|
|
|
this.context.rotate(bodyAngle + angle);
|
2014-02-17 17:54:10 +00:00
|
|
|
|
2014-02-19 15:43:05 +00:00
|
|
|
this.context.moveTo(this.game.math.p2pxi(points[0][0]), this.game.math.p2pxi(points[0][1]));
|
2014-02-17 17:54:10 +00:00
|
|
|
|
|
|
|
for (var i = 1; i < points.length; i++)
|
|
|
|
{
|
2014-02-19 15:43:05 +00:00
|
|
|
this.context.lineTo(this.game.math.p2pxi(points[i][0]), this.game.math.p2pxi(points[i][1]));
|
2014-02-17 17:54:10 +00:00
|
|
|
}
|
|
|
|
|
2014-02-19 15:43:05 +00:00
|
|
|
// this.context.arc(0, 0, this.game.math.p2px(shape.radius) , 0, Math.PI * 2);
|
|
|
|
|
|
|
|
this.context.closePath();
|
|
|
|
this.context.stroke();
|
|
|
|
this.context.restore();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders a p2.Circle shape. Do not call this directly - instead use Debug.renderPhysicsBody.
|
|
|
|
*
|
|
|
|
* @method Phaser.Utils.Debug#renderShapeCircle
|
|
|
|
* @param {number} x - The x coordinate of the Shape to translate to.
|
|
|
|
* @param {number} y - The y coordinate of the Shape to translate to.
|
|
|
|
* @param {number} bodyAngle - The angle of the Body to rotate to.
|
|
|
|
* @param {p2.Shape} shape - The shape to render.
|
|
|
|
* @param {array} offset - The shape offset vector.
|
|
|
|
* @param {number} angle - The shape angle.
|
|
|
|
*/
|
|
|
|
renderShapeCircle: function (x, y, bodyAngle, shape, offset, angle) {
|
|
|
|
|
|
|
|
this.context.beginPath();
|
|
|
|
this.context.save();
|
|
|
|
this.context.translate(x + this.game.math.p2pxi(offset[0]), y + this.game.math.p2pxi(offset[1]));
|
|
|
|
this.context.arc(0, 0, this.game.math.p2px(shape.radius) , 0, Math.PI * 2);
|
2014-02-17 17:54:10 +00:00
|
|
|
this.context.closePath();
|
|
|
|
this.context.stroke();
|
|
|
|
this.context.restore();
|
|
|
|
|
2013-08-31 20:50:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
};
|
2013-12-30 16:54:00 +00:00
|
|
|
|
|
|
|
Phaser.Utils.Debug.prototype.constructor = Phaser.Utils.Debug;
|