options = {
let factors = [];
let totalArea = height * width;
let options = hasSelected ? [{min:1,size:1},{min:2,size:4},{min:3,size:9},{min:4,size:16}] : [{min:1,size:1}];
for(let h = 0; h <= options.length-1; h++)
{
let areaCount = participantCount-1+options[h].size;
let max = 2 * (areaCount-1);
for(let i = options[h].min; i <= max; i++)
{
for(let j = areaCount; j <= max; j++)
{
let x = i;
let y = j / i;
if(j % i !== 0)
{
continue;
}
if(y < options[h].min)
{
continue;
}
if((x*y)-Math.min(y,x) >= areaCount)
{
continue;
}
let h1 = y * (width / x) / ratio;
var area;
if(h1 <= height)
{
area = (width / x) * (h1 / y)
}
else
{
let w1 = x * (height / y) * ratio;
area = (w1 / x) * (height / y);
}
let boost = (hasSelected && options[h].min > 1) ? boostSelected : 1;
factors.push([options[h].min, x, y, boost * Math.round(area*areaCount/totalArea*100)]);
}
}
}
yield factors.sort(function(a,b)
{
return b[3]-a[3];
}).slice(0,5);
}