using System; using System.Collections.Generic; using System.Linq; using StardewModdingAPI.Enums; using StardewModdingAPI.Events; using StardewModdingAPI.Framework.StateTracking.FieldWatchers; using StardewValley; using ChangeType = StardewModdingAPI.Events.ChangeType; using Chest = StardewValley.Objects.Chest; namespace StardewModdingAPI.Framework.StateTracking { internal class ChestTracker { /********* ** Fields *********/ /// The chest's inventory as of the last reset. private IDictionary PreviousInventory; /// The chest's inventory change as of the last update. private IDictionary CurrentInventory; /********* ** Accessors *********/ /// The chest being tracked public Chest Chest { get; } /********* ** Public methods *********/ public ChestTracker(Chest chest) { this.Chest = chest; this.PreviousInventory = this.GetInventory(); } public void Update() { this.CurrentInventory = this.GetInventory(); } public void Reset() { if(this.CurrentInventory!=null) this.PreviousInventory = this.CurrentInventory; } public IEnumerable GetInventoryChanges() { IDictionary previous = this.PreviousInventory; IDictionary current = this.GetInventory(); foreach (Item item in previous.Keys.Union(current.Keys)) { if (!previous.TryGetValue(item, out int prevStack)) yield return new ItemStackChange { Item = item, StackChange = item.Stack, ChangeType = ChangeType.Added }; else if (!current.TryGetValue(item, out int newStack)) yield return new ItemStackChange { Item = item, StackChange = -item.Stack, ChangeType = ChangeType.Removed }; else if (prevStack != newStack) yield return new ItemStackChange { Item = item, StackChange = newStack - prevStack, ChangeType = ChangeType.StackChange }; } } /********* ** Private methods *********/ private IDictionary GetInventory() { return this.Chest.items .Where(n => n != null) .Distinct() .ToDictionary(n => n, n => n.Stack); } } }