ConceptCreator/src/app/game-model/gamesystems/Gamesystem.ts
Sebastian Böckelmann f55e8dde3d
All checks were successful
E2E Testing / test (push) Successful in 1m23s
Visualize SimpleGamesystems in GamesystemOverview
2024-02-06 20:56:21 +01:00

36 lines
925 B
TypeScript

import {SimpleGamesystem} from "./SimpleGamesystem";
import {ProductGamesystem} from "./ProductGamesystem";
import {ModelComponent} from "../ModelComponent";
import {ModelComponentType} from "../ModelComponentType";
export abstract class Gamesystem<S, T> extends ModelComponent{
states: S[] = [];
transitions: T[] = [];
constructor(gamesystemName: string) {
super(gamesystemName, "", ModelComponentType.GAMESYTEM);
}
abstract createState(label: string, description: string): S|undefined;
abstract createTransition(startingState: S, endingState: S): T|undefined;
abstract removeState(state: S): boolean;
removeTransition(transition: T): boolean {
const updatedTransitions = this.transitions.filter(t => t !== transition);
if(updatedTransitions.length == this.transitions.length) {
return false;
}
this.transitions = updatedTransitions;
return true;
}
save() {
}
}