ConceptCreator/src/app/game-model/gamesystems/conditions/ScriptAccountCondition.ts
Sebastian Böckelmann 75a4122641
All checks were successful
E2E Testing / test (push) Successful in 1m38s
Check if conditions are contradicting each other
2024-02-17 18:37:40 +01:00

30 lines
948 B
TypeScript

import {ScriptAccount} from "../../scriptAccounts/ScriptAccount";
export class ScriptAccountCondition {
scriptAccount: ScriptAccount
minValue: number
maxValue: number
private constructor(scriptAccount: ScriptAccount, minValue: number, maxValue: number) {
this.scriptAccount = scriptAccount;
this.minValue = minValue;
this.maxValue = maxValue;
}
static constructScriptAccountCondition(scriptAccount: ScriptAccount, minValue: number, maxValue: number) {
if(scriptAccount == undefined || minValue == undefined || maxValue == undefined || minValue > maxValue) return undefined
return new ScriptAccountCondition(scriptAccount, minValue, maxValue)
}
extendCondition(condition: ScriptAccountCondition) {
}
isContradicting(condition: ScriptAccountCondition) {
return condition.scriptAccount === this.scriptAccount &&
(this.maxValue < condition.minValue || this.minValue > condition.maxValue)
}
}