2013-11-27 16:33:49 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2014-02-05 05:54:25 +00:00
|
|
|
* @copyright 2014 Photon Storm Ltd.
|
2013-11-27 16:33:49 +00:00
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A Tilemap Layer is a set of map data combined with a Tileset in order to render that data to the game.
|
|
|
|
*
|
|
|
|
* @class Phaser.TilemapLayer
|
|
|
|
* @constructor
|
|
|
|
* @param {Phaser.Game} game - Game reference to the currently running game.
|
|
|
|
* @param {Phaser.Tilemap} tilemap - The tilemap to which this layer belongs.
|
2013-12-19 03:49:28 +00:00
|
|
|
* @param {number} index - The layer index within the map that this TilemapLayer represents.
|
|
|
|
* @param {number} width - Width of the renderable area of the layer.
|
|
|
|
* @param {number} height - Height of the renderable area of the layer.
|
2013-11-27 16:33:49 +00:00
|
|
|
*/
|
2013-12-19 03:49:28 +00:00
|
|
|
Phaser.TilemapLayer = function (game, tilemap, index, width, height) {
|
2013-09-11 01:57:36 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
2013-11-27 16:33:49 +00:00
|
|
|
* @property {Phaser.Game} game - A reference to the currently running Game.
|
2013-11-25 04:40:04 +00:00
|
|
|
*/
|
2013-10-11 03:42:11 +00:00
|
|
|
this.game = game;
|
2013-12-19 03:49:28 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Phaser.Tilemap} map - The Tilemap to which this layer is bound.
|
|
|
|
*/
|
|
|
|
this.map = tilemap;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} index - The index of this layer within the Tilemap.
|
|
|
|
*/
|
|
|
|
this.index = index;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {object} layer - The layer object within the Tilemap that this layer represents.
|
|
|
|
*/
|
|
|
|
this.layer = tilemap.layers[index];
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
2013-12-17 05:07:00 +00:00
|
|
|
* @property {HTMLCanvasElement} canvas - The canvas to which this TilemapLayer draws.
|
2013-11-25 04:40:04 +00:00
|
|
|
*/
|
2014-02-28 03:55:06 +00:00
|
|
|
this.canvas = Phaser.Canvas.create(width, height, '', true);
|
2013-10-01 12:54:29 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
2013-11-27 16:33:49 +00:00
|
|
|
* @property {CanvasRenderingContext2D} context - The 2d context of the canvas.
|
2013-11-25 04:40:04 +00:00
|
|
|
*/
|
2013-10-11 03:42:11 +00:00
|
|
|
this.context = this.canvas.getContext('2d');
|
2013-10-01 12:54:29 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
2013-11-27 16:33:49 +00:00
|
|
|
* @property {PIXI.BaseTexture} baseTexture - Required Pixi var.
|
2013-11-25 04:40:04 +00:00
|
|
|
*/
|
2013-10-11 03:42:11 +00:00
|
|
|
this.baseTexture = new PIXI.BaseTexture(this.canvas);
|
2013-10-01 12:54:29 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
2013-11-27 16:33:49 +00:00
|
|
|
* @property {PIXI.Texture} texture - Required Pixi var.
|
2013-11-25 04:40:04 +00:00
|
|
|
*/
|
2013-10-11 03:42:11 +00:00
|
|
|
this.texture = new PIXI.Texture(this.baseTexture);
|
2013-10-01 12:54:29 +00:00
|
|
|
|
2013-11-27 16:33:49 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.Frame} textureFrame - Dimensions of the renderable area.
|
|
|
|
*/
|
2013-12-19 03:49:28 +00:00
|
|
|
this.textureFrame = new Phaser.Frame(0, 0, 0, width, height, 'tilemapLayer', game.rnd.uuid());
|
2013-10-11 17:18:27 +00:00
|
|
|
|
2014-03-03 05:19:46 +00:00
|
|
|
// Phaser.Sprite.call(this, this.game, 0, 0, this.texture, this.textureFrame);
|
|
|
|
Phaser.Image.call(this, this.game, 0, 0, this.texture, this.textureFrame);
|
2013-12-19 03:49:28 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {string} name - The name of the layer.
|
|
|
|
*/
|
|
|
|
this.name = '';
|
2013-10-16 05:33:39 +00:00
|
|
|
|
2013-11-27 16:33:49 +00:00
|
|
|
/**
|
|
|
|
* @property {number} type - The const type of this object.
|
|
|
|
* @default
|
|
|
|
*/
|
2013-10-16 05:33:39 +00:00
|
|
|
this.type = Phaser.TILEMAPLAYER;
|
2013-10-11 03:42:11 +00:00
|
|
|
|
2013-11-27 16:33:49 +00:00
|
|
|
/**
|
2013-12-17 05:07:00 +00:00
|
|
|
* An object that is fixed to the camera ignores the position of any ancestors in the display list and uses its x/y coordinates as offsets from the top left of the camera.
|
|
|
|
* @property {boolean} fixedToCamera - Fixes this object to the Camera.
|
2013-11-27 16:33:49 +00:00
|
|
|
* @default
|
|
|
|
*/
|
2013-10-16 05:33:39 +00:00
|
|
|
this.fixedToCamera = true;
|
2013-10-14 18:37:44 +00:00
|
|
|
|
2013-12-17 05:07:00 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.Point} cameraOffset - If this object is fixed to the camera then use this Point to specify how far away from the Camera x/y it's rendered.
|
|
|
|
*/
|
2013-12-19 03:49:28 +00:00
|
|
|
this.cameraOffset = new Phaser.Point(0, 0);
|
2013-10-11 03:42:11 +00:00
|
|
|
|
2013-12-18 04:40:10 +00:00
|
|
|
/**
|
2014-01-14 00:31:58 +00:00
|
|
|
* @property {string} tileColor - If no tileset is given the tiles will be rendered as rectangles in this color. Provide in hex or rgb/rgba string format.
|
2013-12-18 04:40:10 +00:00
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this.tileColor = 'rgb(255, 255, 255)';
|
|
|
|
|
2013-12-17 05:07:00 +00:00
|
|
|
/**
|
2014-01-14 22:34:41 +00:00
|
|
|
* @property {boolean} debug - If set to true the collideable tile edges path will be rendered. Only works when game is running in Phaser.CANVAS mode.
|
2013-12-17 05:07:00 +00:00
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this.debug = false;
|
|
|
|
|
2013-12-18 00:44:04 +00:00
|
|
|
/**
|
|
|
|
* @property {number} debugAlpha - If debug is true then the tileset is rendered with this alpha level, to make the tile edges clearer.
|
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this.debugAlpha = 0.5;
|
|
|
|
|
2013-12-18 04:40:10 +00:00
|
|
|
/**
|
|
|
|
* @property {string} debugColor - If debug is true this is the color used to outline the edges of collidable tiles. Provide in hex or rgb/rgba string format.
|
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this.debugColor = 'rgba(0, 255, 0, 1)';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {boolean} debugFill - If true the debug tiles are filled with debugFillColor AND stroked around.
|
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this.debugFill = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {string} debugFillColor - If debugFill is true this is the color used to fill the tiles. Provide in hex or rgb/rgba string format.
|
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this.debugFillColor = 'rgba(0, 255, 0, 0.2)';
|
|
|
|
|
2014-01-14 22:34:41 +00:00
|
|
|
/**
|
|
|
|
* @property {string} debugCallbackColor - If debug is true this is the color used to outline the edges of tiles that have collision callbacks. Provide in hex or rgb/rgba string format.
|
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this.debugCallbackColor = 'rgba(255, 0, 0, 1)';
|
|
|
|
|
2013-12-18 04:40:10 +00:00
|
|
|
/**
|
|
|
|
* @property {number} scrollFactorX - speed at which this layer scrolls
|
|
|
|
* horizontally, relative to the camera (e.g. scrollFactorX of 0.5 scrolls
|
|
|
|
* half as quickly as the 'normal' camera-locked layers do)
|
|
|
|
* @default 1
|
|
|
|
*/
|
|
|
|
this.scrollFactorX = 1;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} scrollFactorY - speed at which this layer scrolls
|
|
|
|
* vertically, relative to the camera (e.g. scrollFactorY of 0.5 scrolls
|
|
|
|
* half as quickly as the 'normal' camera-locked layers do)
|
|
|
|
* @default 1
|
|
|
|
*/
|
|
|
|
this.scrollFactorY = 1;
|
|
|
|
|
|
|
|
/**
|
2013-12-19 03:49:28 +00:00
|
|
|
* @property {boolean} dirty - Flag controlling when to re-render the layer.
|
2013-12-18 04:40:10 +00:00
|
|
|
*/
|
2013-12-19 03:49:28 +00:00
|
|
|
this.dirty = true;
|
2013-12-18 04:40:10 +00:00
|
|
|
|
|
|
|
/**
|
2013-12-19 03:49:28 +00:00
|
|
|
* @property {number} _cw - Local collision var.
|
|
|
|
* @private
|
2013-12-18 04:40:10 +00:00
|
|
|
*/
|
2013-12-19 03:49:28 +00:00
|
|
|
this._cw = tilemap.tileWidth;
|
2013-12-18 04:40:10 +00:00
|
|
|
|
|
|
|
/**
|
2013-12-19 03:49:28 +00:00
|
|
|
* @property {number} _ch - Local collision var.
|
|
|
|
* @private
|
2013-12-18 04:40:10 +00:00
|
|
|
*/
|
2013-12-19 03:49:28 +00:00
|
|
|
this._ch = tilemap.tileHeight;
|
2013-12-18 04:40:10 +00:00
|
|
|
|
2013-10-11 05:30:28 +00:00
|
|
|
/**
|
|
|
|
* @property {number} _ga - Local render loop var to help avoid gc spikes.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._ga = 1;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} _dx - Local render loop var to help avoid gc spikes.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._dx = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} _dy - Local render loop var to help avoid gc spikes.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._dy = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} _dw - Local render loop var to help avoid gc spikes.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._dw = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} _dh - Local render loop var to help avoid gc spikes.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._dh = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} _tx - Local render loop var to help avoid gc spikes.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._tx = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} _ty - Local render loop var to help avoid gc spikes.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._ty = 0;
|
2013-10-15 03:28:16 +00:00
|
|
|
|
2013-11-27 16:33:49 +00:00
|
|
|
/**
|
|
|
|
* @property {number} _tw - Local render loop var to help avoid gc spikes.
|
|
|
|
* @private
|
|
|
|
*/
|
2013-10-15 03:28:16 +00:00
|
|
|
this._tw = 0;
|
2013-11-27 16:33:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} _th - Local render loop var to help avoid gc spikes.
|
|
|
|
* @private
|
|
|
|
*/
|
2013-10-15 03:28:16 +00:00
|
|
|
this._th = 0;
|
2013-10-11 05:30:28 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} _tl - Local render loop var to help avoid gc spikes.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._tl = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} _maxX - Local render loop var to help avoid gc spikes.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._maxX = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} _maxY - Local render loop var to help avoid gc spikes.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._maxY = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} _startX - Local render loop var to help avoid gc spikes.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._startX = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} _startY - Local render loop var to help avoid gc spikes.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._startY = 0;
|
|
|
|
|
2013-11-27 16:33:49 +00:00
|
|
|
/**
|
|
|
|
* @property {array} _results - Local render loop var to help avoid gc spikes.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._results = [];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} _x - Private var.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._x = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} _y - Private var.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._y = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} _prevX - Private var.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._prevX = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} _prevY - Private var.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._prevY = 0;
|
|
|
|
|
2013-12-19 03:49:28 +00:00
|
|
|
this.updateMax();
|
2013-10-14 18:37:44 +00:00
|
|
|
|
2013-09-11 01:57:36 +00:00
|
|
|
};
|
|
|
|
|
2014-03-03 05:19:46 +00:00
|
|
|
Phaser.TilemapLayer.prototype = Object.create(Phaser.Image.prototype);
|
|
|
|
// Phaser.TilemapLayer.prototype = Phaser.Utils.extend(true, Phaser.TilemapLayer.prototype, Phaser.Sprite.prototype, PIXI.Sprite.prototype);
|
2013-10-16 05:33:39 +00:00
|
|
|
Phaser.TilemapLayer.prototype.constructor = Phaser.TilemapLayer;
|
2013-09-11 01:57:36 +00:00
|
|
|
|
2013-11-27 16:33:49 +00:00
|
|
|
/**
|
2013-12-01 01:40:24 +00:00
|
|
|
* Automatically called by World.postUpdate. Handles cache updates.
|
2013-11-27 16:33:49 +00:00
|
|
|
*
|
2013-12-01 01:40:24 +00:00
|
|
|
* @method Phaser.TilemapLayer#postUpdate
|
2013-11-27 16:33:49 +00:00
|
|
|
* @memberof Phaser.TilemapLayer
|
|
|
|
*/
|
2013-12-01 01:40:24 +00:00
|
|
|
Phaser.TilemapLayer.prototype.postUpdate = function () {
|
2013-10-16 01:09:12 +00:00
|
|
|
|
2014-03-03 05:19:46 +00:00
|
|
|
// Phaser.Sprite.prototype.postUpdate.call(this);
|
|
|
|
Phaser.Image.prototype.postUpdate.call(this);
|
2013-12-01 01:40:24 +00:00
|
|
|
|
2013-12-06 04:34:27 +00:00
|
|
|
// Stops you being able to auto-scroll the camera if it's not following a sprite
|
2013-11-07 18:44:04 +00:00
|
|
|
this.scrollX = this.game.camera.x * this.scrollFactorX;
|
|
|
|
this.scrollY = this.game.camera.y * this.scrollFactorY;
|
2013-10-16 01:09:12 +00:00
|
|
|
|
2013-10-16 05:33:39 +00:00
|
|
|
this.render();
|
2013-10-16 01:09:12 +00:00
|
|
|
|
2013-10-16 05:33:39 +00:00
|
|
|
}
|
2013-10-16 01:09:12 +00:00
|
|
|
|
2013-11-27 16:33:49 +00:00
|
|
|
/**
|
|
|
|
* Sets the world size to match the size of this layer.
|
|
|
|
*
|
|
|
|
* @method Phaser.TilemapLayer#resizeWorld
|
|
|
|
* @memberof Phaser.TilemapLayer
|
|
|
|
*/
|
2013-10-16 05:33:39 +00:00
|
|
|
Phaser.TilemapLayer.prototype.resizeWorld = function () {
|
2013-10-16 01:09:12 +00:00
|
|
|
|
2013-12-22 04:27:12 +00:00
|
|
|
this.game.world.setBounds(0, 0, this.layer.widthInPixels, this.layer.heightInPixels);
|
2013-12-18 04:40:10 +00:00
|
|
|
|
2013-10-16 05:33:39 +00:00
|
|
|
}
|
2013-10-15 03:28:16 +00:00
|
|
|
|
2013-11-07 18:44:04 +00:00
|
|
|
/**
|
2013-12-09 16:40:48 +00:00
|
|
|
* Take an x coordinate that doesn't account for scrollFactorX and 'fix' it
|
2013-11-27 16:33:49 +00:00
|
|
|
* into a scrolled local space. Used primarily internally
|
|
|
|
* @method Phaser.TilemapLayer#_fixX
|
|
|
|
* @memberof Phaser.TilemapLayer
|
|
|
|
* @private
|
|
|
|
* @param {number} x - x coordinate in camera space
|
|
|
|
* @return {number} x coordinate in scrollFactor-adjusted dimensions
|
|
|
|
*/
|
2013-11-13 20:57:09 +00:00
|
|
|
Phaser.TilemapLayer.prototype._fixX = function(x) {
|
|
|
|
|
2013-12-09 16:40:48 +00:00
|
|
|
if (x < 0)
|
|
|
|
{
|
|
|
|
x = 0;
|
|
|
|
}
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
if (this.scrollFactorX === 1)
|
2013-11-13 20:57:09 +00:00
|
|
|
{
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
2013-12-09 16:40:48 +00:00
|
|
|
return this._x + (x - (this._x / this.scrollFactorX));
|
2013-11-13 20:57:09 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-11-07 18:44:04 +00:00
|
|
|
/**
|
2013-12-09 16:40:48 +00:00
|
|
|
* Take an x coordinate that _does_ account for scrollFactorX and 'unfix' it
|
2013-11-27 16:33:49 +00:00
|
|
|
* back to camera space. Used primarily internally
|
|
|
|
* @method Phaser.TilemapLayer#_unfixX
|
|
|
|
* @memberof Phaser.TilemapLayer
|
|
|
|
* @private
|
|
|
|
* @param {number} x - x coordinate in scrollFactor-adjusted dimensions
|
|
|
|
* @return {number} x coordinate in camera space
|
|
|
|
*/
|
2013-11-13 20:57:09 +00:00
|
|
|
Phaser.TilemapLayer.prototype._unfixX = function(x) {
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
if (this.scrollFactorX === 1)
|
2013-11-13 20:57:09 +00:00
|
|
|
{
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
2013-12-09 16:40:48 +00:00
|
|
|
return (this._x / this.scrollFactorX) + (x - this._x);
|
2013-11-13 20:57:09 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-11-07 18:44:04 +00:00
|
|
|
/**
|
2013-11-27 16:33:49 +00:00
|
|
|
* Take a y coordinate that doesn't account for scrollFactorY and 'fix' it
|
|
|
|
* into a scrolled local space. Used primarily internally
|
|
|
|
* @method Phaser.TilemapLayer#_fixY
|
|
|
|
* @memberof Phaser.TilemapLayer
|
|
|
|
* @private
|
|
|
|
* @param {number} y - y coordinate in camera space
|
|
|
|
* @return {number} y coordinate in scrollFactor-adjusted dimensions
|
|
|
|
*/
|
2013-11-13 20:57:09 +00:00
|
|
|
Phaser.TilemapLayer.prototype._fixY = function(y) {
|
|
|
|
|
2013-12-09 16:40:48 +00:00
|
|
|
if (y < 0)
|
|
|
|
{
|
|
|
|
y = 0;
|
|
|
|
}
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
if (this.scrollFactorY === 1)
|
2013-11-13 20:57:09 +00:00
|
|
|
{
|
|
|
|
return y;
|
|
|
|
}
|
|
|
|
|
2013-12-09 16:40:48 +00:00
|
|
|
return this._y + (y - (this._y / this.scrollFactorY));
|
2013-11-13 20:57:09 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-11-07 18:44:04 +00:00
|
|
|
/**
|
2013-11-27 16:33:49 +00:00
|
|
|
* Take a y coordinate that _does_ account for scrollFactorY and 'unfix' it
|
|
|
|
* back to camera space. Used primarily internally
|
|
|
|
* @method Phaser.TilemapLayer#_unfixY
|
|
|
|
* @memberof Phaser.TilemapLayer
|
|
|
|
* @private
|
|
|
|
* @param {number} y - y coordinate in scrollFactor-adjusted dimensions
|
|
|
|
* @return {number} y coordinate in camera space
|
|
|
|
*/
|
2013-11-13 20:57:09 +00:00
|
|
|
Phaser.TilemapLayer.prototype._unfixY = function(y) {
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
if (this.scrollFactorY === 1)
|
2013-11-13 20:57:09 +00:00
|
|
|
{
|
|
|
|
return y;
|
|
|
|
}
|
|
|
|
|
2013-12-09 16:40:48 +00:00
|
|
|
return (this._y / this.scrollFactorY) + (y - this._y);
|
2013-11-13 20:57:09 +00:00
|
|
|
|
|
|
|
}
|
2013-11-07 18:44:04 +00:00
|
|
|
|
2013-10-16 20:25:51 +00:00
|
|
|
/**
|
|
|
|
* Convert a pixel value to a tile coordinate.
|
2013-11-27 16:33:49 +00:00
|
|
|
* @method Phaser.TilemapLayer#getTileX
|
|
|
|
* @memberof Phaser.TilemapLayer
|
2013-10-16 20:25:51 +00:00
|
|
|
* @param {number} x - X position of the point in target tile.
|
2013-11-27 16:33:49 +00:00
|
|
|
* @return {Phaser.Tile} The tile with specific properties.
|
2013-10-16 20:25:51 +00:00
|
|
|
*/
|
|
|
|
Phaser.TilemapLayer.prototype.getTileX = function (x) {
|
|
|
|
|
2013-12-19 03:49:28 +00:00
|
|
|
// var tileWidth = this.tileWidth * this.scale.x;
|
2013-10-16 20:25:51 +00:00
|
|
|
|
2013-12-19 03:49:28 +00:00
|
|
|
return this.game.math.snapToFloor(this._fixX(x), this.map.tileWidth) / this.map.tileWidth;
|
2013-10-16 20:25:51 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert a pixel value to a tile coordinate.
|
2013-11-27 16:33:49 +00:00
|
|
|
* @method Phaser.TilemapLayer#getTileY
|
|
|
|
* @memberof Phaser.TilemapLayer
|
|
|
|
* @param {number} y - Y position of the point in target tile.
|
|
|
|
* @return {Phaser.Tile} The tile with specific properties.
|
2013-10-16 20:25:51 +00:00
|
|
|
*/
|
|
|
|
Phaser.TilemapLayer.prototype.getTileY = function (y) {
|
|
|
|
|
2013-12-19 03:49:28 +00:00
|
|
|
// var tileHeight = this.tileHeight * this.scale.y;
|
2013-10-16 20:25:51 +00:00
|
|
|
|
2013-12-19 03:49:28 +00:00
|
|
|
return this.game.math.snapToFloor(this._fixY(y), this.map.tileHeight) / this.map.tileHeight;
|
2013-10-16 20:25:51 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-11-27 16:33:49 +00:00
|
|
|
/**
|
|
|
|
* Convert a pixel value to a tile coordinate.
|
|
|
|
* @method Phaser.TilemapLayer#getTileXY
|
|
|
|
* @memberof Phaser.TilemapLayer
|
|
|
|
* @param {number} x - X position of the point in target tile.
|
|
|
|
* @param {number} y - Y position of the point in target tile.
|
2013-12-19 03:49:28 +00:00
|
|
|
* @param {Phaser.Point|object} point - The Point object to set the x and y values on.
|
|
|
|
* @return {Phaser.Point|object} A Point object with its x and y properties set.
|
2013-11-27 16:33:49 +00:00
|
|
|
*/
|
2013-10-16 20:25:51 +00:00
|
|
|
Phaser.TilemapLayer.prototype.getTileXY = function (x, y, point) {
|
|
|
|
|
|
|
|
point.x = this.getTileX(x);
|
|
|
|
point.y = this.getTileY(y);
|
|
|
|
|
|
|
|
return point;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-10-16 05:33:39 +00:00
|
|
|
/**
|
2013-12-17 05:07:00 +00:00
|
|
|
* Get all tiles that exist within the given area, defined by the top-left corner, width and height. Values given are in pixels, not tiles.
|
2013-11-27 16:33:49 +00:00
|
|
|
* @method Phaser.TilemapLayer#getTiles
|
|
|
|
* @memberof Phaser.TilemapLayer
|
2013-12-17 05:07:00 +00:00
|
|
|
* @param {number} x - X position of the top left corner.
|
|
|
|
* @param {number} y - Y position of the top left corner.
|
|
|
|
* @param {number} width - Width of the area to get.
|
|
|
|
* @param {number} height - Height of the area to get.
|
2013-12-05 18:12:16 +00:00
|
|
|
* @param {boolean} [collides=false] - If true only return tiles that collide on one or more faces.
|
2013-10-16 05:33:39 +00:00
|
|
|
* @return {array} Array with tiles informations (each contains x, y, and the tile).
|
|
|
|
*/
|
2013-12-17 05:07:00 +00:00
|
|
|
Phaser.TilemapLayer.prototype.getTiles = function (x, y, width, height, collides) {
|
|
|
|
|
|
|
|
// Should we only get tiles that have at least one of their collision flags set? (true = yes, false = no just get them all)
|
|
|
|
if (typeof collides === 'undefined') { collides = false; }
|
|
|
|
|
|
|
|
// adjust the x,y coordinates for scrollFactor
|
|
|
|
x = this._fixX(x);
|
|
|
|
y = this._fixY(y);
|
|
|
|
|
2013-12-19 03:49:28 +00:00
|
|
|
if (width > this.layer.widthInPixels)
|
2013-12-17 05:07:00 +00:00
|
|
|
{
|
2013-12-19 03:49:28 +00:00
|
|
|
width = this.layer.widthInPixels;
|
2013-12-17 05:07:00 +00:00
|
|
|
}
|
|
|
|
|
2013-12-19 03:49:28 +00:00
|
|
|
if (height > this.layer.heightInPixels)
|
2013-12-17 05:07:00 +00:00
|
|
|
{
|
2013-12-19 03:49:28 +00:00
|
|
|
height = this.layer.heightInPixels;
|
2013-12-17 05:07:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Convert the pixel values into tile coordinates
|
2013-12-19 05:09:49 +00:00
|
|
|
this._tx = this.game.math.snapToFloor(x, this._cw) / this._cw;
|
|
|
|
this._ty = this.game.math.snapToFloor(y, this._ch) / this._ch;
|
|
|
|
this._tw = (this.game.math.snapToCeil(width, this._cw) + this._cw) / this._cw;
|
|
|
|
this._th = (this.game.math.snapToCeil(height, this._ch) + this._ch) / this._ch;
|
2013-12-17 05:07:00 +00:00
|
|
|
|
2013-12-05 18:12:16 +00:00
|
|
|
// This should apply the layer x/y here
|
|
|
|
this._results.length = 0;
|
2013-10-16 05:33:39 +00:00
|
|
|
|
|
|
|
for (var wy = this._ty; wy < this._ty + this._th; wy++)
|
|
|
|
{
|
|
|
|
for (var wx = this._tx; wx < this._tx + this._tw; wx++)
|
2013-10-15 03:28:16 +00:00
|
|
|
{
|
2013-10-16 05:33:39 +00:00
|
|
|
if (this.layer.data[wy] && this.layer.data[wy][wx])
|
2013-10-15 03:28:16 +00:00
|
|
|
{
|
2014-01-31 05:42:20 +00:00
|
|
|
if (collides === false || (collides && this.layer.data[wy][wx].canCollide))
|
2013-10-15 03:28:16 +00:00
|
|
|
{
|
2014-01-31 05:42:20 +00:00
|
|
|
// Convert tile coordinates back to camera space for return
|
|
|
|
var _wx = this._unfixX(wx * this._cw) / this._cw;
|
|
|
|
var _wy = this._unfixY(wy * this._ch) / this._ch;
|
|
|
|
|
|
|
|
this._results.push({
|
|
|
|
x: _wx * this._cw,
|
|
|
|
y: _wy * this._ch,
|
|
|
|
right: (_wx * this._cw) + this._cw,
|
|
|
|
bottom: (_wy * this._ch) + this._ch,
|
|
|
|
tile: this.layer.data[wy][wx],
|
|
|
|
layer: this.layer.data[wy][wx].layer
|
|
|
|
});
|
2013-10-15 03:28:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-10-16 05:33:39 +00:00
|
|
|
}
|
2013-10-15 03:28:16 +00:00
|
|
|
|
2013-10-16 05:33:39 +00:00
|
|
|
return this._results;
|
2013-10-14 18:37:44 +00:00
|
|
|
|
2013-10-16 05:33:39 +00:00
|
|
|
}
|
2013-10-11 05:30:28 +00:00
|
|
|
|
2013-11-27 16:33:49 +00:00
|
|
|
/**
|
|
|
|
* Internal function to update maximum values.
|
|
|
|
* @method Phaser.TilemapLayer#updateMax
|
|
|
|
* @memberof Phaser.TilemapLayer
|
|
|
|
*/
|
2013-10-16 05:33:39 +00:00
|
|
|
Phaser.TilemapLayer.prototype.updateMax = function () {
|
2013-10-11 05:30:28 +00:00
|
|
|
|
2013-12-19 03:49:28 +00:00
|
|
|
this._maxX = this.game.math.ceil(this.canvas.width / this.map.tileWidth) + 1;
|
|
|
|
this._maxY = this.game.math.ceil(this.canvas.height / this.map.tileHeight) + 1;
|
2013-10-11 05:30:28 +00:00
|
|
|
|
2013-10-16 05:33:39 +00:00
|
|
|
if (this.layer)
|
|
|
|
{
|
|
|
|
if (this._maxX > this.layer.width)
|
2013-10-11 19:02:12 +00:00
|
|
|
{
|
2013-10-16 05:33:39 +00:00
|
|
|
this._maxX = this.layer.width;
|
2013-10-11 05:30:28 +00:00
|
|
|
}
|
|
|
|
|
2013-10-16 05:33:39 +00:00
|
|
|
if (this._maxY > this.layer.height)
|
|
|
|
{
|
|
|
|
this._maxY = this.layer.height;
|
|
|
|
}
|
|
|
|
}
|
2013-10-11 05:30:28 +00:00
|
|
|
|
2013-10-16 05:33:39 +00:00
|
|
|
this.dirty = true;
|
2013-10-11 05:30:28 +00:00
|
|
|
|
2013-10-16 05:33:39 +00:00
|
|
|
}
|
2013-10-11 05:30:28 +00:00
|
|
|
|
2013-11-27 16:33:49 +00:00
|
|
|
/**
|
|
|
|
* Renders the tiles to the layer canvas and pushes to the display.
|
|
|
|
* @method Phaser.TilemapLayer#render
|
|
|
|
* @memberof Phaser.TilemapLayer
|
|
|
|
*/
|
2013-10-16 05:33:39 +00:00
|
|
|
Phaser.TilemapLayer.prototype.render = function () {
|
2013-10-13 00:29:57 +00:00
|
|
|
|
2014-03-03 05:19:46 +00:00
|
|
|
if (this.layer.dirty)
|
2014-01-31 05:42:20 +00:00
|
|
|
{
|
|
|
|
this.dirty = true;
|
|
|
|
}
|
2013-10-16 20:25:51 +00:00
|
|
|
|
2014-01-31 05:42:20 +00:00
|
|
|
if (!this.dirty || !this.visible)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2013-10-11 05:30:28 +00:00
|
|
|
|
2013-10-16 05:33:39 +00:00
|
|
|
this._prevX = this._dx;
|
|
|
|
this._prevY = this._dy;
|
2013-10-11 05:30:28 +00:00
|
|
|
|
2013-12-19 03:49:28 +00:00
|
|
|
this._dx = -(this._x - (this._startX * this.map.tileWidth));
|
|
|
|
this._dy = -(this._y - (this._startY * this.map.tileHeight));
|
2013-10-11 05:30:28 +00:00
|
|
|
|
2013-10-16 05:33:39 +00:00
|
|
|
this._tx = this._dx;
|
|
|
|
this._ty = this._dy;
|
2013-10-11 05:30:28 +00:00
|
|
|
|
2013-12-06 04:34:27 +00:00
|
|
|
this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);
|
2014-01-31 03:32:12 +00:00
|
|
|
|
2013-12-19 03:49:28 +00:00
|
|
|
this.context.fillStyle = this.tileColor;
|
|
|
|
|
|
|
|
var tile;
|
|
|
|
var set;
|
|
|
|
var ox = 0;
|
|
|
|
var oy = 0;
|
2013-12-17 05:07:00 +00:00
|
|
|
|
|
|
|
if (this.debug)
|
|
|
|
{
|
2013-12-18 00:44:04 +00:00
|
|
|
this.context.globalAlpha = this.debugAlpha;
|
2013-12-17 05:07:00 +00:00
|
|
|
}
|
2013-10-11 17:18:27 +00:00
|
|
|
|
2014-03-03 05:19:46 +00:00
|
|
|
for (var y = this._startY, lenY = this._startY + this._maxY; y < lenY; y++)
|
|
|
|
{
|
|
|
|
this._column = this.layer.data[y];
|
|
|
|
|
|
|
|
for (var x = this._startX, lenX = this._startX + this._maxX; x < lenX; x++)
|
|
|
|
{
|
|
|
|
if (this._column[x])
|
|
|
|
{
|
|
|
|
tile = this._column[x];
|
|
|
|
|
|
|
|
// this needs to know which set the index is from
|
|
|
|
// set = this.map.tilesets[this.map.tiles[tile.index][2]]
|
|
|
|
set = this.map.tilesets[0];
|
|
|
|
|
|
|
|
if (this.debug === false && tile.alpha !== this.context.globalAlpha)
|
|
|
|
{
|
|
|
|
this.context.globalAlpha = tile.alpha;
|
|
|
|
}
|
|
|
|
|
|
|
|
set.draw(this.context, Math.floor(this._tx), Math.floor(this._ty), tile.index);
|
|
|
|
|
|
|
|
if (tile.debug)
|
|
|
|
{
|
|
|
|
this.context.fillStyle = 'rgba(0, 255, 0, 0.4)';
|
|
|
|
this.context.fillRect(Math.floor(this._tx), Math.floor(this._ty), this.map.tileWidth, this.map.tileHeight);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this._tx += this.map.tileWidth;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
this._tx = this._dx;
|
|
|
|
this._ty += this.map.tileHeight;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.debug)
|
|
|
|
{
|
|
|
|
this.context.globalAlpha = 1;
|
|
|
|
this.renderDebug();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.game.renderType === Phaser.WEBGL)
|
|
|
|
{
|
|
|
|
// PIXI.updateWebGLTexture(this.baseTexture, renderSession.gl);
|
|
|
|
PIXI.updateWebGLTexture(this.baseTexture, this.game.renderer.gl);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.dirty = false;
|
|
|
|
this.layer.dirty = false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders the tiles to the layer canvas and pushes to the display.
|
|
|
|
* @method Phaser.TilemapLayer#render
|
|
|
|
* @memberof Phaser.TilemapLayer
|
|
|
|
*/
|
|
|
|
Phaser.TilemapLayer.prototype.OLDrender = function () {
|
|
|
|
|
|
|
|
if (this.layer.dirty)
|
|
|
|
{
|
|
|
|
this.dirty = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this.dirty || !this.visible)
|
|
|
|
{
|
|
|
|
// return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._prevX = this._dx;
|
|
|
|
this._prevY = this._dy;
|
|
|
|
|
|
|
|
this._dx = -(this._x - (this._startX * this.map.tileWidth));
|
|
|
|
this._dy = -(this._y - (this._startY * this.map.tileHeight));
|
|
|
|
|
|
|
|
this._tx = this._dx;
|
|
|
|
this._ty = this._dy;
|
|
|
|
|
|
|
|
this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);
|
|
|
|
|
|
|
|
this.context.fillStyle = this.tileColor;
|
|
|
|
|
|
|
|
var tile;
|
|
|
|
var set;
|
|
|
|
var ox = 0;
|
|
|
|
var oy = 0;
|
|
|
|
|
|
|
|
if (this.debug)
|
|
|
|
{
|
|
|
|
this.context.globalAlpha = this.debugAlpha;
|
|
|
|
}
|
|
|
|
|
2013-12-05 18:12:16 +00:00
|
|
|
for (var y = this._startY, lenY = this._startY + this._maxY; y < lenY; y++)
|
2013-10-16 05:33:39 +00:00
|
|
|
{
|
|
|
|
this._column = this.layer.data[y];
|
2013-10-11 05:30:28 +00:00
|
|
|
|
2013-12-05 18:12:16 +00:00
|
|
|
for (var x = this._startX, lenX = this._startX + this._maxX; x < lenX; x++)
|
2013-10-16 05:33:39 +00:00
|
|
|
{
|
2013-12-19 03:49:28 +00:00
|
|
|
if (this._column[x])
|
2013-12-05 18:12:16 +00:00
|
|
|
{
|
2013-12-19 03:49:28 +00:00
|
|
|
tile = this._column[x];
|
|
|
|
|
|
|
|
if (this.map.tiles[tile.index])
|
|
|
|
{
|
|
|
|
set = this.map.tilesets[this.map.tiles[tile.index][2]]
|
|
|
|
|
|
|
|
if (set.image)
|
|
|
|
{
|
2014-01-14 22:34:41 +00:00
|
|
|
if (this.debug === false && tile.alpha !== this.context.globalAlpha)
|
|
|
|
{
|
|
|
|
this.context.globalAlpha = tile.alpha;
|
|
|
|
}
|
|
|
|
|
2013-12-19 03:49:28 +00:00
|
|
|
if (set.tileWidth !== this.map.tileWidth || set.tileHeight !== this.map.tileHeight)
|
|
|
|
{
|
|
|
|
// TODO: Smaller sized tile check
|
|
|
|
this.context.drawImage(
|
|
|
|
this.map.tilesets[this.map.tiles[tile.index][2]].image,
|
|
|
|
this.map.tiles[tile.index][0],
|
|
|
|
this.map.tiles[tile.index][1],
|
|
|
|
set.tileWidth,
|
|
|
|
set.tileHeight,
|
|
|
|
Math.floor(this._tx),
|
|
|
|
Math.floor(this._ty) - (set.tileHeight - this.map.tileHeight),
|
|
|
|
set.tileWidth,
|
|
|
|
set.tileHeight
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.context.drawImage(
|
|
|
|
this.map.tilesets[this.map.tiles[tile.index][2]].image,
|
|
|
|
this.map.tiles[tile.index][0],
|
|
|
|
this.map.tiles[tile.index][1],
|
|
|
|
this.map.tileWidth,
|
|
|
|
this.map.tileHeight,
|
|
|
|
Math.floor(this._tx),
|
|
|
|
Math.floor(this._ty),
|
|
|
|
this.map.tileWidth,
|
|
|
|
this.map.tileHeight
|
|
|
|
);
|
|
|
|
}
|
2014-01-31 02:06:45 +00:00
|
|
|
|
2014-03-03 05:19:46 +00:00
|
|
|
// if (tile.debug)
|
|
|
|
// {
|
2014-01-31 04:14:02 +00:00
|
|
|
this.context.fillStyle = 'rgba(0, 255, 0, 0.4)';
|
2014-01-31 02:06:45 +00:00
|
|
|
this.context.fillRect(Math.floor(this._tx), Math.floor(this._ty), this.map.tileWidth, this.map.tileHeight);
|
2014-03-03 05:19:46 +00:00
|
|
|
// }
|
2013-12-19 03:49:28 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.context.fillRect(Math.floor(this._tx), Math.floor(this._ty), this.map.tileWidth, this.map.tileHeight);
|
|
|
|
}
|
|
|
|
}
|
2013-12-18 04:40:10 +00:00
|
|
|
}
|
2013-12-05 18:12:16 +00:00
|
|
|
|
2013-12-19 03:49:28 +00:00
|
|
|
this._tx += this.map.tileWidth;
|
2013-10-11 05:30:28 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-10-16 05:33:39 +00:00
|
|
|
this._tx = this._dx;
|
2013-12-19 03:49:28 +00:00
|
|
|
this._ty += this.map.tileHeight;
|
2013-12-05 18:12:16 +00:00
|
|
|
|
2013-10-16 05:33:39 +00:00
|
|
|
}
|
2013-10-11 05:30:28 +00:00
|
|
|
|
2013-12-18 00:44:04 +00:00
|
|
|
if (this.debug)
|
|
|
|
{
|
|
|
|
this.context.globalAlpha = 1;
|
|
|
|
this.renderDebug();
|
|
|
|
}
|
|
|
|
|
2013-12-05 18:12:16 +00:00
|
|
|
if (this.game.renderType === Phaser.WEBGL)
|
2013-10-16 05:33:39 +00:00
|
|
|
{
|
2014-02-26 00:58:19 +00:00
|
|
|
// PIXI.updateWebGLTexture(this.baseTexture, renderSession.gl);
|
|
|
|
PIXI.updateWebGLTexture(this.baseTexture, this.game.renderer.gl);
|
2013-10-11 17:18:27 +00:00
|
|
|
}
|
|
|
|
|
2013-10-16 05:33:39 +00:00
|
|
|
this.dirty = false;
|
2013-12-19 03:49:28 +00:00
|
|
|
this.layer.dirty = false;
|
2013-10-16 20:25:51 +00:00
|
|
|
|
2013-10-16 05:33:39 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
2013-10-11 05:30:28 +00:00
|
|
|
|
2013-12-18 04:40:10 +00:00
|
|
|
/**
|
|
|
|
* Renders a collision debug overlay on-top of the canvas. Called automatically by render when debug = true.
|
|
|
|
* @method Phaser.TilemapLayer#renderDebug
|
|
|
|
* @memberof Phaser.TilemapLayer
|
|
|
|
*/
|
2013-12-18 00:44:04 +00:00
|
|
|
Phaser.TilemapLayer.prototype.renderDebug = function () {
|
|
|
|
|
|
|
|
this._tx = this._dx;
|
|
|
|
this._ty = this._dy;
|
|
|
|
|
2013-12-18 04:40:10 +00:00
|
|
|
this.context.strokeStyle = this.debugColor;
|
|
|
|
this.context.fillStyle = this.debugFillColor;
|
2013-12-18 00:44:04 +00:00
|
|
|
|
|
|
|
for (var y = this._startY, lenY = this._startY + this._maxY; y < lenY; y++)
|
|
|
|
{
|
|
|
|
this._column = this.layer.data[y];
|
|
|
|
|
|
|
|
for (var x = this._startX, lenX = this._startX + this._maxX; x < lenX; x++)
|
|
|
|
{
|
|
|
|
var tile = this._column[x];
|
|
|
|
|
|
|
|
if (tile && (tile.faceTop || tile.faceBottom || tile.faceLeft || tile.faceRight))
|
|
|
|
{
|
|
|
|
this._tx = Math.floor(this._tx);
|
|
|
|
|
2013-12-18 04:40:10 +00:00
|
|
|
if (this.debugFill)
|
|
|
|
{
|
2013-12-19 05:09:49 +00:00
|
|
|
this.context.fillRect(this._tx, this._ty, this._cw, this._ch);
|
2013-12-18 04:40:10 +00:00
|
|
|
}
|
2013-12-18 00:44:04 +00:00
|
|
|
|
|
|
|
this.context.beginPath();
|
|
|
|
|
|
|
|
if (tile.faceTop)
|
|
|
|
{
|
|
|
|
this.context.moveTo(this._tx, this._ty);
|
2013-12-19 05:09:49 +00:00
|
|
|
this.context.lineTo(this._tx + this._cw, this._ty);
|
2013-12-18 00:44:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (tile.faceBottom)
|
|
|
|
{
|
2013-12-19 05:09:49 +00:00
|
|
|
this.context.moveTo(this._tx, this._ty + this._ch);
|
|
|
|
this.context.lineTo(this._tx + this._cw, this._ty + this._ch);
|
2013-12-18 00:44:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (tile.faceLeft)
|
|
|
|
{
|
|
|
|
this.context.moveTo(this._tx, this._ty);
|
2013-12-19 05:09:49 +00:00
|
|
|
this.context.lineTo(this._tx, this._ty + this._ch);
|
2013-12-18 00:44:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (tile.faceRight)
|
|
|
|
{
|
2013-12-19 05:09:49 +00:00
|
|
|
this.context.moveTo(this._tx + this._cw, this._ty);
|
|
|
|
this.context.lineTo(this._tx + this._cw, this._ty + this._ch);
|
2013-12-18 00:44:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
this.context.stroke();
|
|
|
|
}
|
|
|
|
|
2014-01-14 22:34:41 +00:00
|
|
|
// Collision callback
|
|
|
|
if (tile && (tile.collisionCallback || tile.layer.callbacks[tile.index]))
|
|
|
|
{
|
|
|
|
this.context.fillStyle = this.debugCallbackColor;
|
|
|
|
this.context.fillRect(this._tx, this._ty, this._cw, this._ch);
|
|
|
|
this.context.fillStyle = this.debugFillColor;
|
|
|
|
}
|
|
|
|
|
2013-12-19 03:49:28 +00:00
|
|
|
this._tx += this.map.tileWidth;
|
2013-12-18 00:44:04 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
this._tx = this._dx;
|
2013-12-19 03:49:28 +00:00
|
|
|
this._ty += this.map.tileHeight;
|
2013-12-18 00:44:04 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-11-27 16:33:49 +00:00
|
|
|
/**
|
|
|
|
* @name Phaser.TilemapLayer#scrollX
|
|
|
|
* @property {number} scrollX - Scrolls the map horizontally or returns the current x position.
|
|
|
|
*/
|
2013-10-16 05:33:39 +00:00
|
|
|
Object.defineProperty(Phaser.TilemapLayer.prototype, "scrollX", {
|
2013-10-11 17:18:27 +00:00
|
|
|
|
|
|
|
get: function () {
|
|
|
|
return this._x;
|
|
|
|
},
|
2013-09-11 01:57:36 +00:00
|
|
|
|
2013-10-11 17:18:27 +00:00
|
|
|
set: function (value) {
|
|
|
|
|
2013-12-19 03:49:28 +00:00
|
|
|
// if (value !== this._x && value >= 0 && this.layer && this.layer.widthInPixels > this.width)
|
|
|
|
if (value !== this._x && value >= 0 && this.layer.widthInPixels > this.width)
|
2013-10-11 17:18:27 +00:00
|
|
|
{
|
|
|
|
this._x = value;
|
2013-12-06 04:34:27 +00:00
|
|
|
|
2013-12-19 03:49:28 +00:00
|
|
|
if (this._x > (this.layer.widthInPixels - this.width))
|
2013-10-11 19:02:12 +00:00
|
|
|
{
|
2013-12-19 03:49:28 +00:00
|
|
|
this._x = this.layer.widthInPixels - this.width;
|
2013-10-11 19:02:12 +00:00
|
|
|
}
|
|
|
|
|
2013-12-19 03:49:28 +00:00
|
|
|
this._startX = this.game.math.floor(this._x / this.map.tileWidth);
|
2013-10-11 19:02:12 +00:00
|
|
|
|
|
|
|
if (this._startX < 0)
|
|
|
|
{
|
|
|
|
this._startX = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this._startX + this._maxX > this.layer.width)
|
|
|
|
{
|
|
|
|
this._startX = this.layer.width - this._maxX;
|
|
|
|
}
|
|
|
|
|
2013-10-11 17:18:27 +00:00
|
|
|
this.dirty = true;
|
|
|
|
}
|
2013-09-11 01:57:36 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-10-11 17:18:27 +00:00
|
|
|
});
|
|
|
|
|
2013-11-27 16:33:49 +00:00
|
|
|
/**
|
|
|
|
* @name Phaser.TilemapLayer#scrollY
|
|
|
|
* @property {number} scrollY - Scrolls the map vertically or returns the current y position.
|
|
|
|
*/
|
2013-10-16 05:33:39 +00:00
|
|
|
Object.defineProperty(Phaser.TilemapLayer.prototype, "scrollY", {
|
2013-10-11 17:18:27 +00:00
|
|
|
|
|
|
|
get: function () {
|
|
|
|
return this._y;
|
|
|
|
},
|
|
|
|
|
|
|
|
set: function (value) {
|
|
|
|
|
2013-12-19 03:49:28 +00:00
|
|
|
// if (value !== this._y && value >= 0 && this.layer && this.heightInPixels > this.renderHeight)
|
|
|
|
if (value !== this._y && value >= 0 && this.layer.heightInPixels > this.height)
|
2013-10-11 17:18:27 +00:00
|
|
|
{
|
|
|
|
this._y = value;
|
2013-10-11 19:02:12 +00:00
|
|
|
|
2013-12-19 03:49:28 +00:00
|
|
|
if (this._y > (this.layer.heightInPixels - this.height))
|
2013-10-11 19:02:12 +00:00
|
|
|
{
|
2013-12-19 03:49:28 +00:00
|
|
|
this._y = this.layer.heightInPixels - this.height;
|
2013-10-11 19:02:12 +00:00
|
|
|
}
|
|
|
|
|
2013-12-19 03:49:28 +00:00
|
|
|
this._startY = this.game.math.floor(this._y / this.map.tileHeight);
|
2013-10-11 19:02:12 +00:00
|
|
|
|
|
|
|
if (this._startY < 0)
|
|
|
|
{
|
|
|
|
this._startY = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this._startY + this._maxY > this.layer.height)
|
|
|
|
{
|
|
|
|
this._startY = this.layer.height - this._maxY;
|
|
|
|
}
|
|
|
|
|
2013-10-11 17:18:27 +00:00
|
|
|
this.dirty = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2013-09-12 03:24:01 +00:00
|
|
|
|
2013-10-11 17:18:27 +00:00
|
|
|
});
|
2013-12-19 05:09:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @name Phaser.TilemapLayer#collisionWidth
|
|
|
|
* @property {number} collisionWidth - The width of the collision tiles.
|
|
|
|
*/
|
|
|
|
Object.defineProperty(Phaser.TilemapLayer.prototype, "collisionWidth", {
|
|
|
|
|
|
|
|
get: function () {
|
|
|
|
return this._cw;
|
|
|
|
},
|
|
|
|
|
|
|
|
set: function (value) {
|
|
|
|
|
|
|
|
this._cw = value;
|
|
|
|
|
|
|
|
this.dirty = true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @name Phaser.TilemapLayer#collisionHeight
|
|
|
|
* @property {number} collisionHeight - The height of the collision tiles.
|
|
|
|
*/
|
|
|
|
Object.defineProperty(Phaser.TilemapLayer.prototype, "collisionHeight", {
|
|
|
|
|
|
|
|
get: function () {
|
|
|
|
return this._ch;
|
|
|
|
},
|
|
|
|
|
|
|
|
set: function (value) {
|
|
|
|
|
|
|
|
this._ch = value;
|
|
|
|
|
|
|
|
this.dirty = true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|