feat: allow using String.prototype.includes
in item effect filters
This commit is contained in:
parent
f4585f4254
commit
978301eab1
2 changed files with 11 additions and 4 deletions
|
@ -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),
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue