phaser/src/tilemaps/components/CullTiles.js

152 lines
4.6 KiB
JavaScript
Raw Normal View History

2018-02-12 16:01:20 +00:00
/**
* @author Richard Davey <rich@photonstorm.com>
2019-01-15 16:20:22 +00:00
* @copyright 2019 Photon Storm Ltd.
2018-02-12 16:01:20 +00:00
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
var SnapFloor = require('../../math/snap/SnapFloor');
var SnapCeil = require('../../math/snap/SnapCeil');
2017-11-26 15:05:19 +00:00
/**
* Returns the tiles in the given layer that are within the camera's viewport. This is used internally.
2017-11-26 15:05:19 +00:00
*
2018-02-08 01:08:59 +00:00
* @function Phaser.Tilemaps.Components.CullTiles
* @private
2018-02-08 01:08:59 +00:00
* @since 3.0.0
*
2018-02-08 02:02:37 +00:00
* @param {Phaser.Tilemaps.LayerData} layer - The Tilemap Layer to act upon.
* @param {Phaser.Cameras.Scene2D.Camera} [camera] - The Camera to run the cull check against.
* @param {array} [outputArray] - An optional array to store the Tile objects within.
*
2018-02-08 02:02:37 +00:00
* @return {Phaser.Tilemaps.Tile[]} An array of Tile objects.
2017-11-26 15:05:19 +00:00
*/
var CullTiles = function (layer, camera, outputArray, renderOrder)
{
if (outputArray === undefined) { outputArray = []; }
if (renderOrder === undefined) { renderOrder = 0; }
outputArray.length = 0;
2018-07-15 01:09:36 +00:00
var tilemap = layer.tilemapLayer.tilemap;
2018-07-15 01:09:36 +00:00
var tilemapLayer = layer.tilemapLayer;
2018-07-12 00:14:34 +00:00
2018-04-23 16:45:42 +00:00
var mapData = layer.data;
var mapWidth = layer.width;
var mapHeight = layer.height;
2018-07-12 00:14:34 +00:00
// We need to use the tile sizes defined for the map as a whole, not the layer,
// in order to calculate the bounds correctly. As different sized tiles may be
// placed on the grid and we cannot trust layer.baseTileWidth to give us the true size.
var tileW = Math.floor(tilemap.tileWidth * tilemapLayer.scaleX);
var tileH = Math.floor(tilemap.tileHeight * tilemapLayer.scaleY);
2018-07-15 01:09:36 +00:00
2018-07-18 14:06:56 +00:00
var drawLeft = 0;
var drawRight = mapWidth;
var drawTop = 0;
var drawBottom = mapHeight;
if (!tilemapLayer.skipCull && tilemapLayer.scrollFactorX === 1 && tilemapLayer.scrollFactorY === 1)
{
// Camera world view bounds, snapped for scaled tile size
// Cull Padding values are given in tiles, not pixels
var boundsLeft = SnapFloor(camera.worldView.x - tilemapLayer.x, tileW, 0, true) - tilemapLayer.cullPaddingX;
var boundsRight = SnapCeil(camera.worldView.right - tilemapLayer.x, tileW, 0, true) + tilemapLayer.cullPaddingX;
var boundsTop = SnapFloor(camera.worldView.y - tilemapLayer.y, tileH, 0, true) - tilemapLayer.cullPaddingY;
var boundsBottom = SnapCeil(camera.worldView.bottom - tilemapLayer.y, tileH, 0, true) + tilemapLayer.cullPaddingY;
drawLeft = Math.max(0, boundsLeft);
drawRight = Math.min(mapWidth, boundsRight);
drawTop = Math.max(0, boundsTop);
drawBottom = Math.min(mapHeight, boundsBottom);
}
var x;
var y;
var tile;
if (renderOrder === 0)
2018-07-14 19:30:15 +00:00
{
// right-down
for (y = drawTop; y < drawBottom; y++)
2018-07-14 19:30:15 +00:00
{
2018-10-15 18:31:46 +00:00
for (x = drawLeft; mapData[y] && x < drawRight; x++)
{
tile = mapData[y][x];
2018-10-15 18:31:46 +00:00
if (!tile || tile.index === -1 || !tile.visible || tile.alpha === 0)
{
continue;
}
2018-10-15 18:31:46 +00:00
outputArray.push(tile);
}
}
}
else if (renderOrder === 1)
{
// left-down
2018-04-23 16:45:42 +00:00
for (y = drawTop; y < drawBottom; y++)
{
2018-10-15 18:31:46 +00:00
for (x = drawRight; mapData[y] && x >= drawLeft; x--)
2018-07-14 19:30:15 +00:00
{
tile = mapData[y][x];
2018-10-15 18:31:46 +00:00
if (!tile || tile.index === -1 || !tile.visible || tile.alpha === 0)
{
continue;
}
2018-10-15 18:31:46 +00:00
outputArray.push(tile);
2018-07-14 19:30:15 +00:00
}
}
}
else if (renderOrder === 2)
{
// right-up
2018-07-15 01:09:36 +00:00
for (y = drawBottom; y >= drawTop; y--)
{
2018-10-15 18:31:46 +00:00
for (x = drawLeft; mapData[y] && x < drawRight; x++)
{
tile = mapData[y][x];
2018-10-15 18:31:46 +00:00
if (!tile || tile.index === -1 || !tile.visible || tile.alpha === 0)
{
continue;
}
2018-10-15 18:31:46 +00:00
outputArray.push(tile);
}
2018-07-14 19:30:15 +00:00
}
}
else if (renderOrder === 3)
{
// left-up
for (y = drawBottom; y >= drawTop; y--)
{
2018-10-15 18:31:46 +00:00
for (x = drawRight; mapData[y] && x >= drawLeft; x--)
{
tile = mapData[y][x];
2018-10-15 18:31:46 +00:00
if (!tile || tile.index === -1 || !tile.visible || tile.alpha === 0)
{
continue;
}
2018-10-15 18:31:46 +00:00
outputArray.push(tile);
}
}
}
tilemapLayer.tilesDrawn = outputArray.length;
tilemapLayer.tilesTotal = mapWidth * mapHeight;
2018-07-12 00:14:34 +00:00
return outputArray;
};
module.exports = CullTiles;