2019-04-26 15:51:05 +02:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Content.Shared.GameObjects.Components.Research;
|
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.GameObjects.Components.Research
|
|
|
|
|
{
|
2019-07-31 15:02:36 +02:00
|
|
|
[RegisterComponent]
|
|
|
|
|
[ComponentReference(typeof(SharedMaterialStorageComponent))]
|
2019-04-26 15:51:05 +02:00
|
|
|
public class MaterialStorageComponent : SharedMaterialStorageComponent
|
|
|
|
|
{
|
|
|
|
|
protected override Dictionary<string, int> Storage { get; set; } = new Dictionary<string, int>();
|
|
|
|
|
|
|
|
|
|
public event Action OnMaterialStorageChanged;
|
|
|
|
|
|
|
|
|
|
public override void HandleComponentState(ComponentState curState, ComponentState nextState)
|
|
|
|
|
{
|
|
|
|
|
base.HandleComponentState(curState, nextState);
|
|
|
|
|
if (!(curState is MaterialStorageState state)) return;
|
|
|
|
|
Storage = state.Storage;
|
|
|
|
|
OnMaterialStorageChanged?.Invoke();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|