Automatically add Owning group of item to inherited group-list
All checks were successful
E2E Testing / test (push) Successful in 1m44s

This commit is contained in:
Sebastian Böckelmann 2024-05-05 17:48:36 +02:00
parent bf4c6bd19c
commit a57024c6af
3 changed files with 11 additions and 1 deletions

View File

@ -13,7 +13,6 @@ import {ProductTemplateCreator} from "./templates/productGamesystem/ProductTempl
import {CharacterRelation} from "./characters/CharacterRelation";
import {ItemGroup} from "./inventory/ItemGroup";
import {AbstractItemGroup} from "./inventory/AbstractItemGroup";
import {GameModelLoader} from "../../../../app/storage/loader/GameModelLoader";
import {ConcreteItemGroup} from "./inventory/ConcreteItemGroup";
import {Item} from "./inventory/Item";

View File

@ -7,6 +7,7 @@ export class ConcreteItemGroup extends ItemGroup {
addItem(item: Item) {
if(this.findItemByName(item.componentName) == undefined) {
item.addInheritedGroup(this);
this.items.push(item);
}
}

View File

@ -4,4 +4,14 @@ import {ItemGroup} from "./ItemGroup";
export class Item extends ModelComponent {
inheritedGroups: ItemGroup[] = []
addInheritedGroup(itemgroup: ItemGroup) {
if(this.findItemgroupByName(itemgroup.componentName) == undefined) {
this.inheritedGroups.push(itemgroup);
}
}
findItemgroupByName(groupName: string) {
return this.inheritedGroups.find(group => group.componentName === groupName);
}
}