import {StoreComponent} from "../../../../../app/storage/StoreComponent"; import {Gamesystem} from "../../game-model/gamesystems/Gamesystem"; import {ParsedParentGamesystems} from "./ParsedParentGamesystems"; import {ProductGamesystem} from "../../game-model/gamesystems/ProductGamesystem"; import {SimpleGamesystem} from "../../game-model/gamesystems/SimpleGamesystem"; export class GamesystemParser { parsedParentGamesystems: ParsedParentGamesystems[] = [] parsedGamesystems: Gamesystem[] = [] public parseGamesystem(storedGamesystem: StoreComponent) { const parsedGamesystemData = JSON.parse(storedGamesystem.jsonString) let parsedSystem: Gamesystem if(parsedGamesystemData.childsystems != undefined) { parsedSystem = this.parseProductGamesystem(parsedGamesystemData) } else { parsedSystem = this.parseSimpleGamesystem(parsedGamesystemData) } this.parsedGamesystems.push(parsedSystem); } parseSimpleGamesystem(gamesystemData: any): SimpleGamesystem { const simpleGamesystem = new SimpleGamesystem(gamesystemData.componentName, gamesystemData.componentDescription) return simpleGamesystem } parseProductGamesystem(gamesystemData: any) { const productGamesystem = new ProductGamesystem(gamesystemData.componentName, gamesystemData.componentDescription); const childsystemNames: string[] = [] for(let i=0; i[] { const topGamesystems: Gamesystem[] = [] this.parsedGamesystems.forEach(parsedGamesystem => { const searchedParentsystem = this.findParentsystem(parsedGamesystem.componentName) if(searchedParentsystem != undefined) { searchedParentsystem.addChildGamesystem(parsedGamesystem) } else { topGamesystems.push(parsedGamesystem) } }) return topGamesystems } findParentsystem(childsystemName: string) { for(let i=0; i