ConceptCreator/src/app/project/serializer/InventorySlotSerializer.ts
Sebastian Böckelmann 8fc57d3396
All checks were successful
E2E Testing / test (push) Successful in 1m32s
Implement Combinable Inventoryslots
2024-05-11 15:34:25 +02:00

25 lines
897 B
TypeScript

import {InventorySlot} from "../game-model/inventory/intentory-slots/InventorySlot";
export class InventorySlotSerializer {
private static ignoredKeys: string[] = ['']
public static serializeInventorySlots(inventorySlots: InventorySlot[]) {
return inventorySlots.map(inventorySlot => {
return {
slotName: inventorySlot.slotName,
slotCharacteristics: inventorySlot.slotCharacteristics.map(slotCharacteristic => {
return {
increasingCharacteristic: slotCharacteristic.increasingCharacteristic!.characteristicName,
decreasingCharacteristic: slotCharacteristic.decreasingCharacteristic!.characteristicName
}
}),
requiredInheritances: inventorySlot.requiredInheritances.map(itemgroup => {
return itemgroup.componentName
}),
combinable: inventorySlot.combinable
}
})
}
}