2020-11-14 03:16:03 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This class is intended as a placeholder for utility methods unrelated
|
|
|
|
* to actual classes of the game system or of FoundryVTT
|
|
|
|
*/
|
|
|
|
export class Misc {
|
2021-01-05 18:43:13 +01:00
|
|
|
static isFunction(v) {
|
|
|
|
return v && {}.toString.call(v) === '[object Function]';
|
|
|
|
}
|
|
|
|
|
2020-11-15 02:07:41 +01:00
|
|
|
static upperFirst(text) {
|
2020-11-14 03:16:03 +01:00
|
|
|
return text.charAt(0).toUpperCase() + text.slice(1);
|
|
|
|
}
|
2021-01-05 18:43:13 +01:00
|
|
|
|
2020-11-15 02:07:41 +01:00
|
|
|
static toSignedString(number){
|
|
|
|
const value = parseInt(number)
|
|
|
|
const isPositiveNumber = value != NaN && value > 0;
|
|
|
|
return isPositiveNumber ? "+"+number : number
|
|
|
|
}
|
2021-01-05 18:43:13 +01:00
|
|
|
|
2020-11-15 02:07:41 +01:00
|
|
|
/**
|
|
|
|
* Converts the value to an integer, or to 0 if undefined/null/not representing integer
|
|
|
|
* @param {*} value value to convert to an integer using parseInt
|
|
|
|
*/
|
|
|
|
static toInt(value)
|
|
|
|
{
|
|
|
|
if (value == undefined)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
const parsed = parseInt(value);
|
|
|
|
return isNaN(parsed) ? 0 : parsed;
|
|
|
|
}
|
2021-01-05 18:43:13 +01:00
|
|
|
|
|
|
|
static getFractionHtml(diviseur) {
|
|
|
|
if (!diviseur || diviseur <= 1) return undefined;
|
|
|
|
switch (diviseur || 1) {
|
|
|
|
case 2: return '½';
|
|
|
|
case 4: return '¼';
|
|
|
|
default: return '1/' + diviseur;
|
|
|
|
}
|
|
|
|
}
|
2021-02-05 01:38:40 +01:00
|
|
|
|
|
|
|
static classify(items, classifier = it => it.type, transform = it => it) {
|
|
|
|
let itemsBy = {};
|
|
|
|
Misc.classifyInto(itemsBy, items, classifier, transform);
|
|
|
|
return itemsBy;
|
|
|
|
}
|
|
|
|
|
|
|
|
static classifyInto(itemsBy, items, classifier = it => it.type, transform = it => it) {
|
|
|
|
for (const item of items) {
|
|
|
|
const classification = classifier(item);
|
|
|
|
let list = itemsBy[classification];
|
|
|
|
if (!list) {
|
|
|
|
list = [];
|
|
|
|
itemsBy[classification] = list;
|
|
|
|
}
|
|
|
|
list.push(transform(item));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-12 01:11:03 +01:00
|
|
|
static rollOneOf(array) {
|
|
|
|
return array[new Roll("1d" + array.length).evaluate().total - 1];
|
|
|
|
}
|
|
|
|
|
|
|
|
static distinct(array) {
|
|
|
|
return [...new Set(array)];
|
|
|
|
}
|
|
|
|
|
2020-11-14 03:16:03 +01:00
|
|
|
}
|