phaser/src/tilemaps/components/WeightedRandomize.js

78 lines
2.7 KiB
JavaScript
Raw Normal View History

2018-02-12 16:01:20 +00:00
/**
* @author Richard Davey <rich@photonstorm.com>
2023-01-02 17:36:27 +00:00
* @copyright 2013-2023 Photon Storm Ltd.
2019-05-10 15:15:04 +00:00
* @license {@link https://opensource.org/licenses/MIT|MIT License}
2018-02-12 16:01:20 +00:00
*/
2017-12-03 14:56:12 +00:00
var GetTilesWithin = require('./GetTilesWithin');
/**
* Randomizes the indexes of a rectangular region of tiles (in tile coordinates) within the
2018-04-10 14:21:10 +00:00
* specified layer. Each tile will receive a new index. New indexes are drawn from the given
2017-12-03 14:56:12 +00:00
* weightedIndexes array. An example weighted array:
*
* [
* { index: 6, weight: 4 }, // Probability of index 6 is 4 / 8
* { index: 7, weight: 2 }, // Probability of index 7 would be 2 / 8
* { index: 8, weight: 1.5 }, // Probability of index 8 would be 1.5 / 8
* { index: 26, weight: 0.5 } // Probability of index 27 would be 0.5 / 8
* ]
*
* The probability of any index being choose is (the index's weight) / (sum of all weights). This
2018-02-08 01:08:59 +00:00
* method only modifies tile indexes and does not change collision information.
*
* @function Phaser.Tilemaps.Components.WeightedRandomize
* @since 3.0.0
2017-12-03 14:56:12 +00:00
*
2020-11-23 10:48:24 +00:00
* @param {number} tileX - The left most tile index (in tile coordinates) to use as the origin of the area.
* @param {number} tileY - The top most tile index (in tile coordinates) to use as the origin of the area.
* @param {number} width - How many tiles wide from the `tileX` index the area will be.
* @param {number} height - How many tiles tall from the `tileY` index the area will be.
* @param {object[]} weightedIndexes - An array of objects to randomly draw from during
* randomization. They should be in the form: { index: 0, weight: 4 } or
* { index: [0, 1], weight: 4 } if you wish to draw from multiple tile indexes.
2018-02-08 02:02:37 +00:00
* @param {Phaser.Tilemaps.LayerData} layer - The Tilemap Layer to act upon.
2017-12-03 14:56:12 +00:00
*/
var WeightedRandomize = function (tileX, tileY, width, height, weightedIndexes, layer)
{
2020-11-23 10:48:24 +00:00
if (!weightedIndexes) { return; }
2017-12-03 14:56:12 +00:00
var i;
var tiles = GetTilesWithin(tileX, tileY, width, height, null, layer);
var weightTotal = 0;
2020-11-23 10:48:24 +00:00
2017-12-03 14:56:12 +00:00
for (i = 0; i < weightedIndexes.length; i++)
{
weightTotal += weightedIndexes[i].weight;
}
if (weightTotal <= 0) { return; }
for (i = 0; i < tiles.length; i++)
{
var rand = Math.random() * weightTotal;
var sum = 0;
var randomIndex = -1;
2017-12-03 14:56:12 +00:00
for (var j = 0; j < weightedIndexes.length; j++)
{
sum += weightedIndexes[j].weight;
2017-12-03 14:56:12 +00:00
if (rand <= sum)
{
2018-01-10 06:24:56 +00:00
var chosen = weightedIndexes[j].index;
randomIndex = Array.isArray(chosen)
? chosen[Math.floor(Math.random() * chosen.length)]
2018-01-10 06:24:56 +00:00
: chosen;
2018-01-10 06:26:02 +00:00
break;
2017-12-03 14:56:12 +00:00
}
}
tiles[i].index = randomIndex;
}
};
module.exports = WeightedRandomize;