var GetTilesWithin = require('./GetTilesWithin'); /** * For each tile in the given rectangular area (in tile coordinates) of the layer, run the given * callback. * * @param {number} callback - The callback. Each tile in the given area will be passed to this * callback as the first and only parameter. * @param {number} context - The context under which the callback should be run. * @param {number} [tileX=0] - [description] * @param {number} [tileY=0] - [description] * @param {number} [width=max width based on tileX] - [description] * @param {number} [height=max height based on tileY] - [description] * @param {object} [filteringOptions] - Optional filters to apply when getting the tiles. * @param {boolean} [filteringOptions.isNotEmpty=false] - If true, only return tiles that don't have * -1 for an index. * @param {boolean} [filteringOptions.isColliding=false] - If true, only return tiles that collide on * at least one side. * @param {boolean} [filteringOptions.hasInterestingFace=false] - If true, only return tiles that * have at least one interesting face. * @param {LayerData} layer - [description] */ var ForEachTile = function (callback, context, tileX, tileY, width, height, filteringOptions, layer) { var tiles = GetTilesWithin(tileX, tileY, width, height, filteringOptions, layer); tiles.forEach(callback, context); }; module.exports = ForEachTile;