feat: allow using String.prototype.includes in item effect filters

This commit is contained in:
Johannes Loher 2023-09-16 10:54:40 +02:00
parent f4585f4254
commit 978301eab1
Signed by: saluu
GPG key ID: 7CB0A9FB553DA045
2 changed files with 11 additions and 4 deletions

View file

@ -5,7 +5,8 @@
import { DS4 } from "../../config"; import { DS4 } from "../../config";
import { createCheckRoll } from "../../dice/check-factory"; import { createCheckRoll } from "../../dice/check-factory";
import { mathEvaluator } from "../../expression-evaluation/evaluator"; import { Evaluator } from "../../expression-evaluation/evaluator";
import { Validator } from "../../expression-evaluation/validator";
import { logger } from "../../utils/logger"; import { logger } from "../../utils/logger";
import { getGame } from "../../utils/utils"; import { getGame } from "../../utils/utils";
import { DS4ActiveEffect } from "../active-effect"; import { DS4ActiveEffect } from "../active-effect";
@ -59,7 +60,7 @@ export class DS4Actor extends Actor {
} }
/** /**
* The effects that should be applioed to this actor. * The effects that should be applied to this actor.
* @type {import("../active-effect").DS4ActiveEffect[]} * @type {import("../active-effect").DS4ActiveEffect[]}
* @protected * @protected
*/ */
@ -90,7 +91,7 @@ export class DS4Actor extends Actor {
if (condition !== undefined && condition !== "") { if (condition !== undefined && condition !== "") {
try { try {
const replacedCondition = DS4Actor.replaceFormulaData(condition, { item, actor: this, effect }); const replacedCondition = DS4Actor.replaceFormulaData(condition, { item, actor: this, effect });
return replacedCondition !== undefined ? Boolean(mathEvaluator.evaluate(replacedCondition)) : false; return replacedCondition !== undefined ? Boolean(DS4Actor.evaluator.evaluate(replacedCondition)) : false;
} catch (error) { } catch (error) {
logger.warn(error); logger.warn(error);
return false; return false;
@ -520,6 +521,12 @@ export class DS4Actor extends Actor {
rejectClose: false, rejectClose: false,
}); });
} }
static evaluator = new Evaluator({
context: Math,
predicate: (identifier) =>
Validator.defaultPredicate(identifier) || ["includes", "toLowerCase", "toUpperCase"].includes(identifier),
});
} }
/** /**

View file

@ -19,7 +19,7 @@ export class Evaluator<Context extends object> {
get: (t, k) => (k === Symbol.unscopables ? undefined : t[k as keyof typeof t]), get: (t, k) => (k === Symbol.unscopables ? undefined : t[k as keyof typeof t]),
}); });
actualPredicate = (identifier: string) => actualPredicate = (identifier: string) =>
predicate(identifier) || Object.getOwnPropertyNames(Math).includes(identifier); predicate(identifier) || Object.getOwnPropertyNames(context).includes(identifier);
} }
this.validator = new Validator(actualPredicate); this.validator = new Validator(actualPredicate);
} }