From 90203315aa238e8b49f3624a733346fe81805103 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sun, 30 Dec 2018 00:01:20 -0500 Subject: [PATCH] remove unused serialisation & networking code per discussion --- GeneralMods/SaveAnywhere/SaveAnywhere.cs | 6 - .../StardustCore/Interfaces/ISerializeable.cs | 27 - .../Interfaces/IToolSerializer.cs | 15 - GeneralMods/StardustCore/ModCore.cs | 388 +---- GeneralMods/StardustCore/ModInfo/Metadata.cs | 270 ---- .../NetCode/Graphics/NetAnimation.cs | 65 - .../NetCode/Graphics/NetAnimationManager.cs | 143 -- .../NetCode/MultiplayerSupport.cs | 15 - .../NetCode/NetBufferReadStream.cs | 99 -- .../NetCode/NetBufferWriteStream.cs | 97 -- .../StardustCore/NetCode/NetKeyValuePair.cs | 30 - .../NetPairs/NetVector2MultiTilePair.cs | 36 - .../NetCode/NetTexure2DExtended.cs | 84 - .../NetCode/Objects/NetCoreObject.cs | 160 -- .../NetCode/Objects/NetMultiTileComponent.cs | 116 -- .../NetCode/Objects/NetMultiTileObject.cs | 81 - .../StardustCore/Objects/CoreObject.cs | 1354 ----------------- .../Objects/MultiTileComponent.cs | 244 --- .../StardustCore/Objects/MultiTileObject.cs | 247 --- .../Objects/Tools/BasicToolInfo.cs | 40 - .../StardustCore/Objects/Tools/ExtendedAxe.cs | 142 -- .../StardustCore/Objects/Tools/ExtendedHoe.cs | 142 -- .../Objects/Tools/ExtendedPickaxe.cs | 142 -- .../Objects/Tools/ExtendedWateringCan.cs | 156 -- .../Serialization_ExtendedAxe.cs | 43 - .../Serialization_ExtendedHoe.cs | 43 - .../Serialization_ExtendedPickaxe.cs | 42 - .../Serialization_ExtendedWateringCan.cs | 46 - .../SerializedObjectBase.cs | 29 - .../Serialization/Serialization.cs | 971 ------------ .../Serialization/SerializerDataNode.cs | 73 - GeneralMods/StardustCore/StardustCore.csproj | 30 - GeneralMods/StardustCore/Utilities.cs | 673 -------- 33 files changed, 9 insertions(+), 6040 deletions(-) delete mode 100644 GeneralMods/StardustCore/Interfaces/ISerializeable.cs delete mode 100644 GeneralMods/StardustCore/Interfaces/IToolSerializer.cs delete mode 100644 GeneralMods/StardustCore/ModInfo/Metadata.cs delete mode 100644 GeneralMods/StardustCore/NetCode/Graphics/NetAnimation.cs delete mode 100644 GeneralMods/StardustCore/NetCode/Graphics/NetAnimationManager.cs delete mode 100644 GeneralMods/StardustCore/NetCode/MultiplayerSupport.cs delete mode 100644 GeneralMods/StardustCore/NetCode/NetBufferReadStream.cs delete mode 100644 GeneralMods/StardustCore/NetCode/NetBufferWriteStream.cs delete mode 100644 GeneralMods/StardustCore/NetCode/NetKeyValuePair.cs delete mode 100644 GeneralMods/StardustCore/NetCode/NetPairs/NetVector2MultiTilePair.cs delete mode 100644 GeneralMods/StardustCore/NetCode/NetTexure2DExtended.cs delete mode 100644 GeneralMods/StardustCore/NetCode/Objects/NetCoreObject.cs delete mode 100644 GeneralMods/StardustCore/NetCode/Objects/NetMultiTileComponent.cs delete mode 100644 GeneralMods/StardustCore/NetCode/Objects/NetMultiTileObject.cs delete mode 100644 GeneralMods/StardustCore/Objects/CoreObject.cs delete mode 100644 GeneralMods/StardustCore/Objects/MultiTileComponent.cs delete mode 100644 GeneralMods/StardustCore/Objects/MultiTileObject.cs delete mode 100644 GeneralMods/StardustCore/Objects/Tools/BasicToolInfo.cs delete mode 100644 GeneralMods/StardustCore/Objects/Tools/ExtendedAxe.cs delete mode 100644 GeneralMods/StardustCore/Objects/Tools/ExtendedHoe.cs delete mode 100644 GeneralMods/StardustCore/Objects/Tools/ExtendedPickaxe.cs delete mode 100644 GeneralMods/StardustCore/Objects/Tools/ExtendedWateringCan.cs delete mode 100644 GeneralMods/StardustCore/Objects/Tools/SerializationInformation/Serialization_ExtendedAxe.cs delete mode 100644 GeneralMods/StardustCore/Objects/Tools/SerializationInformation/Serialization_ExtendedHoe.cs delete mode 100644 GeneralMods/StardustCore/Objects/Tools/SerializationInformation/Serialization_ExtendedPickaxe.cs delete mode 100644 GeneralMods/StardustCore/Objects/Tools/SerializationInformation/Serialization_ExtendedWateringCan.cs delete mode 100644 GeneralMods/StardustCore/Objects/Tools/SerializationInformation/SerializedObjectBase.cs delete mode 100644 GeneralMods/StardustCore/Serialization/Serialization.cs delete mode 100644 GeneralMods/StardustCore/Serialization/SerializerDataNode.cs delete mode 100644 GeneralMods/StardustCore/Utilities.cs diff --git a/GeneralMods/SaveAnywhere/SaveAnywhere.cs b/GeneralMods/SaveAnywhere/SaveAnywhere.cs index ee824935..698ffdcb 100644 --- a/GeneralMods/SaveAnywhere/SaveAnywhere.cs +++ b/GeneralMods/SaveAnywhere/SaveAnywhere.cs @@ -67,12 +67,6 @@ namespace Omegasis.SaveAnywhere customMenuOpen = false; } - /*Notes. Mods that want to support save anywhere will get the api for Save anywhere and then add their clean up code to the events that happen for Before/After Save and Loading. - Example with pseudo code. - SaveAnywhere.api.BeforeSave+=StardustCore.Objects.CleanUpBeforeSave; - We then can use function wrapping (is that what it's called?) to just handle calling the actual function that deals with clean-up code. - - */ /********* ** Private methods *********/ diff --git a/GeneralMods/StardustCore/Interfaces/ISerializeable.cs b/GeneralMods/StardustCore/Interfaces/ISerializeable.cs deleted file mode 100644 index 35c7292e..00000000 --- a/GeneralMods/StardustCore/Interfaces/ISerializeable.cs +++ /dev/null @@ -1,27 +0,0 @@ -using StardewValley; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace StardustCore.Interfaces -{ - /// - /// Used to extend custom serialization to a variety of items. - /// - public interface IItemSerializeable - { - /// - /// Gets the type of object I am trying to parse. - /// - /// - Type getCustomType(); - - /// - /// Returns the serialization name of the object I am serializing. - /// - /// - string GetSerializationName(); - } -} diff --git a/GeneralMods/StardustCore/Interfaces/IToolSerializer.cs b/GeneralMods/StardustCore/Interfaces/IToolSerializer.cs deleted file mode 100644 index c633679e..00000000 --- a/GeneralMods/StardustCore/Interfaces/IToolSerializer.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace StardustCore.Interfaces -{ - /// - /// Used to mark items that are valid tools so we can do things like if(Item is IToolSerializer) - /// - interface IToolSerializer - { - } -} diff --git a/GeneralMods/StardustCore/ModCore.cs b/GeneralMods/StardustCore/ModCore.cs index 0ae51a73..165ccd1b 100644 --- a/GeneralMods/StardustCore/ModCore.cs +++ b/GeneralMods/StardustCore/ModCore.cs @@ -1,78 +1,28 @@ -using Microsoft.Xna.Framework; -using Microsoft.Xna.Framework.Input; +using System.Collections.Generic; +using System.IO; using StardewModdingAPI; -using StardewValley; -using StardewValley.Menus; -using StardewValley.Network; -using StardustCore.Menus; -using StardustCore.ModInfo; -using StardustCore.NetCode; -using StardustCore.Objects; -using StardustCore.Objects.Tools; -using StardustCore.Serialization; using StardustCore.UIUtilities; using StardustCore.UIUtilities.SpriteFonts; -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Reflection; -using System.Text; -using System.Threading.Tasks; -using System.Xml; -using System.Xml.Serialization; namespace StardustCore { - /* - *Known issues: - * Clients have a error on Serialization that says they run across unknown XML elements such as core objects. However, inventories for farmhands and modded objects still get serialized properly. - * Inventories get wiped after being returned home from a festival. - */ - - public class ModCore : Mod { public static IModHelper ModHelper; public static IMonitor ModMonitor; public static IManifest Manifest; - public static Serialization.SerializationManager SerializationManager; - public static UIUtilities.TextureManager TextureManager; + public static TextureManager TextureManager; public static Dictionary TextureManagers; - private Type lastMenuType; - public ModConfig config; - public bool playerJustDisconnected; - - public bool justWarped; - public static string ContentDirectory; public override void Entry(IModHelper helper) { - ModHelper = Helper; - ModMonitor = Monitor; - Manifest = ModManifest; - //Unused MetaData information. Works in player inventory but not in chests. Besides who really care where an object is from anyways. Also doesn't work 100% like I intended since it only gets base mod object that this runs from, not extensions? - - // StardewModdingAPI.Events.GraphicsEvents.OnPostRenderGuiEvent += Metadata.GameEvents_UpdateTick; - //StardewModdingAPI.Events.ControlEvents.MouseChanged += ControlEvents_MouseChanged; - - - StardewModdingAPI.Events.SaveEvents.AfterSave += SaveEvents_AfterSave; - StardewModdingAPI.Events.SaveEvents.BeforeSave += SaveEvents_BeforeSave; - StardewModdingAPI.Events.SaveEvents.AfterLoad += SaveEvents_AfterLoad; - StardewModdingAPI.Events.MenuEvents.MenuChanged += MenuEvents_MenuChanged; - StardewModdingAPI.Events.MenuEvents.MenuClosed += MenuEvents_MenuClosed; - - ModHelper.Events.Multiplayer.PeerContextReceived += Multiplayer_PeerContextReceived; - ModHelper.Events.Multiplayer.ModMessageReceived += Multiplayer_ModMessageReceived; - ModHelper.Events.Multiplayer.PeerDisconnected += Multiplayer_PeerDisconnected; - - - playerJustDisconnected = false; + ModHelper = this.Helper; + ModMonitor = this.Monitor; + Manifest = this.ModManifest; IlluminateFramework.Colors.initializeColors(); ContentDirectory = "Content"; @@ -82,332 +32,12 @@ namespace StardustCore TextureManagers = new Dictionary(); TextureManager = new TextureManager(); - TextureManager.addTexture("Test1", new Texture2DExtended(ModCore.ModHelper, Manifest,Path.Combine("Content", "Graphics", "MultiTest", "Test1.png"))); + TextureManager.addTexture("Test1", new Texture2DExtended(ModCore.ModHelper, Manifest, Path.Combine("Content", "Graphics", "MultiTest", "Test1.png"))); TextureManager.addTexture("Test2", new Texture2DExtended(ModCore.ModHelper, Manifest, Path.Combine("Content", "Graphics", "MultiTest", "Test2.png"))); TextureManager.addTexture("Test3", new Texture2DExtended(ModCore.ModHelper, Manifest, Path.Combine("Content", "Graphics", "MultiTest", "Test3.png"))); - TextureManagers.Add(ModManifest.UniqueID, TextureManager); - StardewModdingAPI.Events.ControlEvents.KeyPressed += ControlEvents_KeyPressed; + TextureManagers.Add(this.ModManifest.UniqueID, TextureManager); - ModHelper.Events.World.ObjectListChanged += World_ObjectListChanged; - - config = ModHelper.ReadConfig(); - - StardewModdingAPI.Events.GameEvents.UpdateTick += GameEvents_UpdateTick; - - Helper.Events.Player.Warped += Player_Warped; - - ModHelper.Events.GameLoop.ReturnedToTitle += GameLoop_ReturnedToTitle; - - } - - private void World_ObjectListChanged(object sender, StardewModdingAPI.Events.ObjectListChangedEventArgs e) - { - if (e.Added != null) - { - - } - else if (e.Removed != null) - { - - } - } - - private void Player_Warped(object sender, StardewModdingAPI.Events.WarpedEventArgs e) - { - if (justWarped) return; - SerializationManager.cleanUpInventory(); - //SerializationManager.cleanUpWorld(); - //SerializationManager.cleanUpStorageContainers(); - justWarped = true; - } - - - private void GameLoop_ReturnedToTitle(object sender, StardewModdingAPI.Events.ReturnedToTitleEventArgs e) - { - if (Game1.player != null) - { - SerializationManager.cleanUpInventory(); - //SerializationManager.cleanUpWorld(); - //SerializationManager.cleanUpStorageContainers(); - //Monitor.Log("Saved the player data after returning to title!"); - } - } - - private void Multiplayer_PeerDisconnected(object sender, StardewModdingAPI.Events.PeerDisconnectedEventArgs e) - { - this.playerJustDisconnected = true; - - //ModMonitor.Log("Peer disconnected! Serializing custom objects"); - - SerializationManager.cleanUpInventory(); - //SerializationManager.cleanUpWorld(); - //SerializationManager.cleanUpStorageContainers(); - - } - - private void Multiplayer_ModMessageReceived(object sender, StardewModdingAPI.Events.ModMessageReceivedEventArgs e) - { - //ModMonitor.Log("Get messages from"+e.FromModID); - //ModMonitor.Log("Message type: " + e.Type); - - if (e.FromModID == this.ModManifest.UniqueID) - { - if (e.Type == MultiplayerSupport.CleanUpModObjects) - { - SerializationManager.cleanUpInventory(); - SerializationManager.cleanUpWorld(); - SerializationManager.cleanUpStorageContainers(); - } - else if (e.Type == MultiplayerSupport.RestoreModObjects) - { - if (Game1.eventUp) return; //Prevent item duplication. - //ModMonitor.Log("Restoring custom objects."); - SerializationManager.restoreAllModObjects(SerializationManager.trackedObjectList); - } - } - } - - private void Multiplayer_PeerContextReceived(object sender, StardewModdingAPI.Events.PeerContextReceivedEventArgs e) - { - - if (SerializationManager == null) return; - - - if (Game1.eventUp) - { - SerializationManager.restoreAllModObjects(SerializationManager.trackedObjectList); //Force a restore and then a serialize save to prevent deletions. - } - //ModMonitor.Log("Got peer context. Serialize/remove all custom objects really quick to prevent loading errors."); - - - SerializationManager.cleanUpInventory(); - //SerializationManager.cleanUpWorld(); - //SerializationManager.cleanUpStorageContainers(); - - - } - - private void MenuEvents_MenuClosed(object sender, StardewModdingAPI.Events.EventArgsClickableMenuClosed e) - { - if (this.lastMenuType == null) - { - return; - } - else - { - /* - if (lastMenuType == typeof(StardewValley.Menus.SaveGameMenu) ||lastMenuType==typeof(StardewValley.Menus.ShippingMenu)) - { - SerializationManager.restoreAllModObjects(SerializationManager.trackedObjectList); - - List playerIds = new List(); - foreach (Farmer f in Game1.getAllFarmers()) - { - if (f == Game1.player) continue; - playerIds.Add(f.uniqueMultiplayerID); - - } - ModHelper.Multiplayer.SendMessage(MultiplayerSupport.RestoreModObjects, MultiplayerSupport.RestoreModObjects, new string[] { ModManifest.UniqueID }, playerIds.ToArray()); - } - */ - //Only fires in multiplayer since ReadyCheckDialogue only appears in multiplayer - if (lastMenuType == typeof(StardewValley.Menus.ReadyCheckDialog) && Game1.player.canMove==false && Game1.player.isInBed) - { - //ModMonitor.Log("Time to sleep/serialize all objects!"); - SerializationManager.cleanUpInventory(); - SerializationManager.cleanUpWorld(); - SerializationManager.cleanUpStorageContainers(); - - /* - List playerIds = new List(); - foreach (Farmer f in Game1.getAllFarmers()) - { - if (f == null) continue; - if (f == Game1.player) continue; - playerIds.Add(f.uniqueMultiplayerID); - - } - */ - //ModHelper.Multiplayer.SendMessage(MultiplayerSupport.CleanUpModObjects, MultiplayerSupport.CleanUpModObjects, new string[] { ModManifest.UniqueID }, playerIds.ToArray()); - - } - } - } - - private void MenuEvents_MenuChanged(object sender, StardewModdingAPI.Events.EventArgsClickableMenuChanged e) - { - lastMenuType = Game1.activeClickableMenu.GetType(); - } - - /// - /// Returns the value of the data snagged by reflection. - /// - /// - /// - /// - /// - public static object GetInstanceField(Type type, object instance, string fieldName) - { - BindingFlags bindFlags = BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static; - FieldInfo field = type.GetField(fieldName, bindFlags); - /* - FieldInfo[] meh = type.GetFields(bindFlags); - foreach(var v in meh) - { - if (v.Name == null) - { - continue; - } - Monitor.Log(v.Name); - } - */ - return field.GetValue(instance); - } - - public static void SetInstanceField(Type type, object instance, object value, string fieldName) - { - BindingFlags bindFlags = BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic - | BindingFlags.Static; - FieldInfo field = type.GetField(fieldName, bindFlags); - field.SetValue(instance, value); - return; - } - - private void GameEvents_UpdateTick(object sender, EventArgs e) - { - if (playerJustDisconnected) - { - playerJustDisconnected = false; - if (Game1.activeClickableMenu != null) - { - if (Game1.activeClickableMenu.GetType() == typeof(StardewValley.Menus.TitleMenu)) return; - } - //ModMonitor.Log("Restore objects after peer disconnect!"); - SerializationManager.restoreAllModObjects(SerializationManager.trackedObjectList); - } - else if (justWarped && Game1.eventUp==false && Game1.activeClickableMenu==null) - { - justWarped = false; - //ModMonitor.Log("Restore objects after player warping!"); - SerializationManager.restoreAllModObjects(SerializationManager.trackedObjectList,true); - } - } - - private void ControlEvents_KeyPressed(object sender, StardewModdingAPI.Events.EventArgsKeyPressed e) - { - if(e.KeyPressed.ToString()== config.modularMenuKey && Game1.activeClickableMenu==null) - { - //Game1.activeClickableMenu = new ModularGameMenu(0); - } - } - - private void SaveEvents_AfterLoad(object sender, EventArgs e) - { - Game1.game1.Disposed += Game1_Disposed; - - string basePath=Path.Combine( ModCore.ModHelper.DirectoryPath, "PlayerData", Game1.player.Name + "_" + Game1.player.uniqueMultiplayerID); - - string invPath = Path.Combine(basePath,"PlayerInventory"); - string worldPath = Path.Combine(basePath, "ObjectsInWorld"); - string trashPath = Path.Combine(basePath,"ModTrashFolder"); - string chestPath = Path.Combine(basePath, "StorageContainers"); - SerializationManager = new SerializationManager(invPath, trashPath, worldPath, chestPath); - SerializationManager.initializeDefaultSuportedTypes(); - - SerializationManager.restoreAllModObjects(SerializationManager.trackedObjectList); - - List playerIds = new List(); - foreach (Farmer f in Game1.getOnlineFarmers()) - { - if (f.uniqueMultiplayerID == Game1.player.uniqueMultiplayerID) continue; - playerIds.Add(f.uniqueMultiplayerID); - ModMonitor.Log("Sending Message to peer ID: "+f.uniqueMultiplayerID.ToString()); - } - //ModMonitor.Log("Send message to restore mod objects after load!"); - ModHelper.Multiplayer.SendMessage(MultiplayerSupport.RestoreModObjects, MultiplayerSupport.RestoreModObjects, new string[] { ModManifest.UniqueID },playerIds.ToArray()); - /* - List> objs = new List>(); - - MultiTileComponent tile1 = new MultiTileComponent(0,"Tileobj1","A basic tile obj",new Texture2DExtended(ModCore.ModHelper,ModCore.Manifest ,Path.Combine("Content", "Graphics", "MultiTest", "Test1.png"))); - MultiTileComponent tile2 = new MultiTileComponent(0,"Tileobj2", "A basic tile obj", new Texture2DExtended(ModCore.ModHelper, ModCore.Manifest, Path.Combine("Content", "Graphics", "MultiTest", "Test2.png"))); - MultiTileComponent tile3 = new MultiTileComponent(0,"Tileobj3", "A basic tile obj", new Texture2DExtended(ModCore.ModHelper, ModCore.Manifest, Path.Combine("Content", "Graphics", "MultiTest", "Test3.png"))); - objs.Add(new KeyValuePair(new Vector2(0, 0), tile1)); - objs.Add(new KeyValuePair(new Vector2(1, 0), tile2)); - objs.Add(new KeyValuePair(new Vector2(2, 0), tile3)); - - MultiTileObject collection= new MultiTileObject("MultiTest", "Trying to get multi object testing working", Vector2.Zero, new Texture2DExtended(ModCore.ModHelper, ModCore.Manifest, Path.Combine("Content", "Graphics", "MultiTest", "Test3.png")), objs, StardustCore.IlluminateFramework.Colors.invertColor(StardustCore.IlluminateFramework.LightColorsList.Purple), "MultiTest"); - - - Game1.player.addItemToInventory(collection); - */ - - /* - CoreObject testTile = new CoreObject(new Texture2DExtended(ModCore.ModHelper,ModCore.Manifest, Path.Combine("Content", "Graphics", "MultiTest", "Test3.png")),3, Vector2.Zero,9); - - testTile.description = "Hello"; - testTile.Name = "test"; - testTile.displayName = "test"; - Game1.player.addItemToInventory(testTile); - */ - - } - - private void Game1_Disposed(object sender, EventArgs e) - { - if (Game1.player != null && lastMenuType!= typeof(StardewValley.Menus.TitleMenu)) - { - //ModMonitor.Log("Serialize all objects on disposing!"); - SerializationManager.cleanUpInventory(); - //SerializationManager.cleanUpWorld(); - //SerializationManager.cleanUpStorageContainers(); - } - } - - private void SaveEvents_AfterSave(object sender, EventArgs e) - { - - SerializationManager.restoreAllModObjects(SerializationManager.trackedObjectList); - - } - - private void SaveEvents_BeforeSave(object sender, EventArgs e) - { - //Call the serialization if alone since the ReadyCheckDialogue menu never shows with just 1 player online. - if (Game1.IsMultiplayer == false || (Game1.IsMultiplayer && Game1.getOnlineFarmers().Count==1)) - { - //ModMonitor.Log("Serialize all objects before save when only 1 farmer present!"); - SerializationManager.cleanUpInventory(); - SerializationManager.cleanUpWorld(); - SerializationManager.cleanUpStorageContainers(); - } - - - } - - private void ControlEvents_MouseChanged(object sender, StardewModdingAPI.Events.EventArgsMouseStateChanged e) - { - //??? - return; - if (Game1.activeClickableMenu == null) return; - var MouseState = Mouse.GetState(); - if (Game1.activeClickableMenu is StardewValley.Menus.ItemGrabMenu && MouseState.LeftButton == ButtonState.Released) - { - (Game1.activeClickableMenu as StardewValley.Menus.ItemGrabMenu).ItemsToGrabMenu.populateClickableComponentList(); - for (int index = 0; index < (Game1.activeClickableMenu as StardewValley.Menus.ItemGrabMenu).ItemsToGrabMenu.inventory.Count; ++index) - { - if ((Game1.activeClickableMenu as StardewValley.Menus.ItemGrabMenu).ItemsToGrabMenu.inventory[index] != null) - { - (Game1.activeClickableMenu as StardewValley.Menus.ItemGrabMenu).ItemsToGrabMenu.inventory[index].myID += 53910; - (Game1.activeClickableMenu as StardewValley.Menus.ItemGrabMenu).ItemsToGrabMenu.inventory[index].upNeighborID += 53910; - (Game1.activeClickableMenu as StardewValley.Menus.ItemGrabMenu).ItemsToGrabMenu.inventory[index].rightNeighborID += 53910; - (Game1.activeClickableMenu as StardewValley.Menus.ItemGrabMenu).ItemsToGrabMenu.inventory[index].downNeighborID = -7777; - (Game1.activeClickableMenu as StardewValley.Menus.ItemGrabMenu).ItemsToGrabMenu.inventory[index].leftNeighborID += 53910; - (Game1.activeClickableMenu as StardewValley.Menus.ItemGrabMenu).ItemsToGrabMenu.inventory[index].fullyImmutable = true; - } - } - // (Game1.activeClickableMenu as ItemGrabMenu).inventory.playerInventory = false; - // Game1.activeClickableMenu =Game1.activeClickableMenu;//new ItemGrabMenu((Game1.activeClickableMenu as ItemGrabMenu).ItemsToGrabMenu.actualInventory,true,true,null,null,null,null,false,false,true,true,true,1,null,-1,null); - } + this.config = ModHelper.ReadConfig(); } } } diff --git a/GeneralMods/StardustCore/ModInfo/Metadata.cs b/GeneralMods/StardustCore/ModInfo/Metadata.cs deleted file mode 100644 index 9f1ccbf5..00000000 --- a/GeneralMods/StardustCore/ModInfo/Metadata.cs +++ /dev/null @@ -1,270 +0,0 @@ -using Microsoft.Xna.Framework; -using Microsoft.Xna.Framework.Graphics; -using StardewModdingAPI; -using StardewValley; -using StardewValley.Menus; -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Reflection; -using System.Text; -using System.Threading.Tasks; - -namespace StardustCore.ModInfo -{ - /// - /// Handles things like displaying object class types. - /// - public class Metadata - { - Color ModInfoColor; - string ModName; - - - /// - /// - /// - /// - /// - private Metadata(Color ? modColor,string modName="") - { - if (modColor == null) ModInfoColor = Color.Black; - else ModInfoColor =(Color) modColor; - ModName = modName; - } - - /// - /// Parse the name of the mod that this object is from from the Namespace type. - /// - /// - /// - public static string parseModNameFromType(Type t) - { - string s = t.ToString(); - string[] array = s.Split('.'); - return array[0]; - } - - /// - /// Parse the class inside of the mod's namespace that this object is from. - /// - /// - /// - public static string parseClassNameFromType(Type t) - { - string s = t.ToString(); - string[] array = s.Split('.'); - return array[array.Length-1]; - } - - /// - /// TODO: Add the ModClass item check to chest inventory. See if I can grab activeclickable menu and instead hook the inventory component from it. - /// - /// - /// - public static void GameEvents_UpdateTick(object sender, EventArgs e) - { - if (Game1.activeClickableMenu != null) - { - // if (Game1.activeClickableMenu.allClickableComponents == null) return; - try { - List pages = ModCore.ModHelper.Reflection.GetField>(Game1.activeClickableMenu, "pages").GetValue(); - if (Game1.activeClickableMenu is GameMenu) - { - StardewValley.Menus.IClickableMenu s = pages[(Game1.activeClickableMenu as GameMenu).currentTab]; - - - - foreach (var v in s.allClickableComponents) - { - if (v.containsPoint(Game1.getMouseX(), Game1.getMouseY())) - { - - if (v == null) continue; - string fire = v.name; - - - bool num = true; - foreach (var v2 in fire) - { - if (v2 != '0' && v2 != '1' && v2 != '2' && v2 != '3' && v2 != '4' && v2 != '5' && v2 != '6' && v2 != '7' && v2 != '8' && v2 != '9') - { - num = false; - break; - } - else continue; - } - if (num == true) - { - int inv = Convert.ToInt32(v.name); - Item I = (s as StardewValley.Menus.InventoryPage).inventory.actualInventory[inv]; - - string s1 = parseModNameFromType(I.GetType()); - string s2 = parseClassNameFromType(I.GetType()); - string s3 = Assembly.GetAssembly(I.GetType()).Location; - s3 = Path.GetFileName(s3); - - - //DRAW THE INFO BOX!!! - try - { - SpriteBatch b = new SpriteBatch(Game1.graphics.GraphicsDevice); - b.Begin(); - float boxX =Game1.getMouseX()- (Game1.viewport.Width * .25f); - float boxY =Game1.getMouseY() - (Game1.viewport.Height * .05f); - float boxWidth= (Game1.viewport.Width * .25f); - float boxHeight = (Game1.viewport.Height*.35f); - Game1.drawDialogueBox((int)boxX,(int) boxY,(int)boxWidth, (int)boxHeight, false, true, null,false); - - float xText1XPos = boxX + (Game1.viewport.Width * .08f); - float xText2XPos = boxX + (Game1.viewport.Width * .08f); - if (s1.Length > 12) - { - s1 = "\n" + s1; - xText1XPos = boxX + (Game1.viewport.Width * .025f); - } - - if (s2.Length > 12) - { - s2 = "\n" + s2; - xText2XPos = boxX + (Game1.viewport.Width * .025f); - } - if (s3.Length > 12) - { - s3 = "\n" + s3; - xText1XPos = boxX + (Game1.viewport.Width * .025f); - } - - Utility.drawTextWithShadow(Game1.spriteBatch, "Mod: ", Game1.smallFont, new Vector2(boxX + (Game1.viewport.Width * .025f), Game1.getMouseY() + (int)(Game1.viewport.Height * .1f)), Color.Black, 1, -1); - Utility.drawTextWithShadow(Game1.spriteBatch, s3, Game1.smallFont, new Vector2(xText1XPos, Game1.getMouseY()+(int)(Game1.viewport.Height*.1f)), Color.Black, 1, -1); - - Utility.drawTextWithShadow(Game1.spriteBatch, "Class: ", Game1.smallFont, new Vector2(boxX + (Game1.viewport.Width * .025f), Game1.getMouseY() + (int)(Game1.viewport.Height * .2f)), Color.Black, 1, -1); - Utility.drawTextWithShadow(Game1.spriteBatch, s2, Game1.smallFont, new Vector2(xText2XPos, Game1.getMouseY() + (int)(Game1.viewport.Height * .2f)), I.getCategoryColor(), 1, -1); - b.End(); - } - catch(Exception errr) - { - errr.ToString(); - } - - } - } - // if (v == null) continue; - // Log.AsyncC(v.name); - // Log.AsyncM(v.item.Name); - // (s as StardewValley.Menus.InventoryPage). - } - } - } - catch(Exception err) //Try to parse a menu that isn't the default GameMenu - { - err.ToString(); - try - { - List inventory = (List)Game1.activeClickableMenu.GetType().GetProperty("inventory").GetValue(Game1.activeClickableMenu, null); - } - catch(Exception errr) - { - errr.ToString(); - try - { - - IClickableMenu s = (Game1.activeClickableMenu as ItemGrabMenu).ItemsToGrabMenu; - if (s == null) return; - int i = 0; - foreach (var v in s.allClickableComponents) - { - i++; - if (v.containsPoint(Game1.getMouseX(), Game1.getMouseY())) - { - - if (v == null || v.name=="") continue; - string fire = v.name; - - bool num = true; - foreach (var v2 in fire) - { - if (v2 != '0' && v2 != '1' && v2 != '2' && v2 != '3' && v2 != '4' && v2 != '5' && v2 != '6' && v2 != '7' && v2 != '8' && v2 != '9') - { - num = false; - break; - } - else continue; - } - - ///NUM ISN't TRUE!?!?!?!? - if (num == true) - { - int inv = Convert.ToInt32(v.name); - Item I = (s as InventoryMenu).actualInventory[inv]; //Inventory Menu is the actual menu under ItemGrabMenu - // Item I = (s as StardewValley.Menus.ItemGrabMenu).inventory.actualInventory[inv]; ///I isn't being grabbed??? - - string s1 = parseModNameFromType(I.GetType()); - string s2 = parseClassNameFromType(I.GetType()); - string s3 = Assembly.GetAssembly(I.GetType()).Location; - s3 = Path.GetFileName(s3); - - //Draw the info Box! - try - { - - float boxX = Game1.getMouseX() - (Game1.viewport.Width * .25f); - float boxY = Game1.getMouseY() - (Game1.viewport.Height * .05f); - float boxWidth = (Game1.viewport.Width * .25f); - float boxHeight = (Game1.viewport.Height * .35f); - Game1.drawDialogueBox((int)boxX, (int)boxY, (int)boxWidth, (int)boxHeight, false, true, null, false); - - float xText1XPos = boxX + (Game1.viewport.Width * .08f); - float xText2XPos = boxX + (Game1.viewport.Width * .08f); - if (s1.Length > 12) - { - s1 = "\n" + s1; - xText1XPos = boxX + (Game1.viewport.Width * .025f); - } - - if (s2.Length > 12) - { - s2 = "\n" + s2; - xText2XPos = boxX + (Game1.viewport.Width * .025f); - } - if (s3.Length > 12) - { - s3 = "\n" + s3; - xText1XPos = boxX + (Game1.viewport.Width * .025f); - } - - Utility.drawTextWithShadow(Game1.spriteBatch, "Mod: ", Game1.smallFont, new Vector2(boxX + (Game1.viewport.Width * .025f), Game1.getMouseY() + (int)(Game1.viewport.Height * .1f)), Color.Black, 1, -1); - Utility.drawTextWithShadow(Game1.spriteBatch, s3, Game1.smallFont, new Vector2(xText1XPos, Game1.getMouseY() + (int)(Game1.viewport.Height * .1f)), Color.Black, 1, -1); - - Utility.drawTextWithShadow(Game1.spriteBatch, "Class: ", Game1.smallFont, new Vector2(boxX + (Game1.viewport.Width * .025f), Game1.getMouseY() + (int)(Game1.viewport.Height * .2f)), Color.Black, 1, -1); - Utility.drawTextWithShadow(Game1.spriteBatch, s2, Game1.smallFont, new Vector2(xText2XPos, Game1.getMouseY() + (int)(Game1.viewport.Height * .2f)), I.getCategoryColor(), 1, -1); - - } - catch (Exception errrr) - { - errrr.ToString(); - } - - } - } - // if (v == null) continue; - // Log.AsyncC(v.name); - // Log.AsyncM(v.item.Name); - // (s as StardewValley.Menus.InventoryPage). - - - } - } - catch(Exception errrr) - { - errrr.ToString(); - } - } - } - } - - } - - } -} diff --git a/GeneralMods/StardustCore/NetCode/Graphics/NetAnimation.cs b/GeneralMods/StardustCore/NetCode/Graphics/NetAnimation.cs deleted file mode 100644 index 52eb687f..00000000 --- a/GeneralMods/StardustCore/NetCode/Graphics/NetAnimation.cs +++ /dev/null @@ -1,65 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Netcode; -using StardustCore.Animations; - -namespace StardustCore.NetCode.Graphics -{ - public class NetAnimation : Netcode.NetField - { - - public NetRectangle sourceRect; - public NetInt frameDuration; - public NetInt frameDurationUntilNextAnimation; - - public NetAnimation() - { - - } - public NetAnimation(Animations.Animation animation) : base(animation) - { - this.Set(animation); - } - - public override void Set(Animation newValue) - { - this.value = newValue; - } - - protected override void ReadDelta(BinaryReader reader, NetVersion version) - { - sourceRect = new NetRectangle(); - if (sourceRect == null) throw new Exception("WTF??? Why is netfield null"); - if (reader == null) throw new Exception("reader null"); - if (value == null) this.Set(new Animation()); - sourceRect.Read(reader, version); - Value.sourceRectangle = sourceRect.Value; - - frameDuration = new NetInt(); - frameDuration.Read(reader, version); - Value.frameDuration = frameDuration.Value; - - frameDurationUntilNextAnimation = new NetInt(); - frameDurationUntilNextAnimation.Read(reader, version); - Value.frameCountUntilNextAnimation = frameDurationUntilNextAnimation.Value; - } - - protected override void WriteDelta(BinaryWriter writer) - { - - - sourceRect = new NetRectangle(Value.sourceRectangle); - sourceRect.Write(writer); - - frameDuration = new NetInt(Value.frameDuration); - frameDuration.Write(writer); - - frameDurationUntilNextAnimation = new NetInt(Value.frameCountUntilNextAnimation); - frameDurationUntilNextAnimation.Write(writer); - } - } -} diff --git a/GeneralMods/StardustCore/NetCode/Graphics/NetAnimationManager.cs b/GeneralMods/StardustCore/NetCode/Graphics/NetAnimationManager.cs deleted file mode 100644 index 964fa446..00000000 --- a/GeneralMods/StardustCore/NetCode/Graphics/NetAnimationManager.cs +++ /dev/null @@ -1,143 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Netcode; -using StardewValley; -using StardewValley.Network; -using StardustCore.Animations; - -namespace StardustCore.NetCode.Graphics -{ - public class NetAnimationManager : Netcode.NetField - { - - public NetAnimationManager() - { - - } - - public NetAnimationManager(Animations.AnimationManager manager) : base(manager) - { - this.Set(manager); - } - - public NetString currentAnimationName; - public NetInt currentAnimationListIndex; - public NetTexture2DExtended objectTexture; - public NetAnimation defaultDrawFrame; - public NetBool enabled; - public NetString animationDataString; - - protected override void ReadDelta(BinaryReader reader, NetVersion version) - { - //Checks to see if the current animation is nothing, aka null. - NetBool isNull = new NetBool(); - isNull.Read(reader, version); - bool valueIsNull = isNull.Value; - if (isNull) - { - NetTexture2DExtended nullTexture = new NetTexture2DExtended(); - nullTexture.Read(reader, version); - - NetAnimation nullAnimation = new NetAnimation(); - nullAnimation.Read(reader, version); - - Value.setExtendedTexture(nullTexture.Value); - Value.defaultDrawFrame = nullAnimation.Value; - return; - } - - - NetString currentAnimationName = new NetString(); - currentAnimationName.Read(reader, version); - - NetInt currentIndex = new NetInt(); - currentIndex.Read(reader, version); - - NetTexture2DExtended text = new NetTexture2DExtended(); - text.Read(reader, version); - - NetAnimation defaultAnimation = new NetAnimation(); - defaultAnimation.Read(reader, version); - - NetBool enabled = new NetBool(); - enabled.Read(reader, version); - - NetString data = new NetString(); - data.Read(reader, version); - - Value.setExtendedTexture(text.Value); - Value.defaultDrawFrame = defaultAnimation.Value; - Value.enabled = enabled.Value; - //Try and prevent unnecessary parsing. - if (Value.animations == null && !String.IsNullOrEmpty(Value.animationDataString)) - { - Value.animations = Animations.AnimationManager.parseAnimationsFromXNB(data.Value); - } - if (!String.IsNullOrEmpty(data.Value)) - { - Value.setAnimation(currentAnimationName.Value, currentIndex.Value); - } - else - { - Value.currentAnimation = defaultDrawFrame.Value; - } - } - - protected override void WriteDelta(BinaryWriter writer) - { - - - if (String.IsNullOrEmpty(Value.currentAnimationName)) - { - NetBool isNull = new NetBool(true); - writer.Write(isNull); - - - - NetTexture2DExtended defaultTexture = new NetTexture2DExtended(Value.getExtendedTexture()); - defaultTexture.Write(writer); - - //do read/write null values here!!! - if (Value == null) throw new Exception("DONT WRITE A NULL VALUE!!!!"); - NetAnimation drawFrame = new NetAnimation(Value.defaultDrawFrame); - drawFrame.Write(writer); - return; - //throw new Exception("Null string value for currentAnimationName!"); - } - else - { - NetBool isNull = new NetBool(false); - writer.Write(isNull); - } - NetString curentAnimationName = new NetString(!String.IsNullOrEmpty(Value.currentAnimationName) ? Value.currentAnimationName : ""); - currentAnimationName.Write(writer); - - - NetInt currentAnimationListIndex = new NetInt(Value.currentAnimationListIndex); - currentAnimationListIndex.Write(writer); - - NetTexture2DExtended texture = new NetTexture2DExtended(Value.getExtendedTexture()); - texture.Write(writer); - - //do read/write null values here!!! - NetAnimation defaultDrawFrame = new NetAnimation(Value.defaultDrawFrame); - defaultDrawFrame.Write(writer); - - NetBool enabled = new NetBool(Value.enabled); - enabled.Write(writer); - - NetString animationData = new NetString(Value.animationDataString); - animationData.Write(writer); - - } - - public override void Set(AnimationManager newValue) - { - this.value = newValue; - } - } -} diff --git a/GeneralMods/StardustCore/NetCode/MultiplayerSupport.cs b/GeneralMods/StardustCore/NetCode/MultiplayerSupport.cs deleted file mode 100644 index d6c1c464..00000000 --- a/GeneralMods/StardustCore/NetCode/MultiplayerSupport.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace StardustCore.NetCode -{ - public class MultiplayerSupport - { - public static string CleanUpModObjects = "Omegasis.StardustCore.MultiplayerSupport.CleanUpModObjects"; - public static string RestoreModObjects = "Omegasis.StardustCore.MultiplayerSupport.RestoreModObjects"; - - } -} diff --git a/GeneralMods/StardustCore/NetCode/NetBufferReadStream.cs b/GeneralMods/StardustCore/NetCode/NetBufferReadStream.cs deleted file mode 100644 index 0b24e59a..00000000 --- a/GeneralMods/StardustCore/NetCode/NetBufferReadStream.cs +++ /dev/null @@ -1,99 +0,0 @@ -using System; -using System.IO; -using Lidgren.Network; - -namespace StardustCore.NetCode -{ - public class NetBufferReadStream : Stream - { - private long offset; - public NetBuffer Buffer; - - public NetBufferReadStream(NetBuffer buffer) - { - this.Buffer = buffer; - this.offset = buffer.Position; - } - - public override bool CanRead - { - get - { - return true; - } - } - - public override bool CanSeek - { - get - { - return true; - } - } - - public override bool CanWrite - { - get - { - return false; - } - } - - public override long Length - { - get - { - return ((long)this.Buffer.LengthBits - this.offset) / 8L; - } - } - - public override long Position - { - get - { - return (this.Buffer.Position - this.offset) / 8L; - } - set - { - this.Buffer.Position = this.offset + value * 8L; - } - } - - public override void Flush() - { - } - - public override int Read(byte[] buffer, int offset, int count) - { - this.Buffer.ReadBytes(buffer, offset, count); - return count; - } - - public override long Seek(long offset, SeekOrigin origin) - { - switch (origin) - { - case SeekOrigin.Begin: - this.Position = offset; - break; - case SeekOrigin.Current: - this.Position += offset; - break; - case SeekOrigin.End: - this.Position = this.Length + offset; - break; - } - return this.Position; - } - - public override void SetLength(long value) - { - throw new NotSupportedException(); - } - - public override void Write(byte[] buffer, int offset, int count) - { - throw new NotSupportedException(); - } - } -} diff --git a/GeneralMods/StardustCore/NetCode/NetBufferWriteStream.cs b/GeneralMods/StardustCore/NetCode/NetBufferWriteStream.cs deleted file mode 100644 index e3b62d41..00000000 --- a/GeneralMods/StardustCore/NetCode/NetBufferWriteStream.cs +++ /dev/null @@ -1,97 +0,0 @@ -using System; -using System.IO; -using Lidgren.Network; - -namespace StardustCore.NetCode -{ - public class NetBufferWriteStream : Stream - { - private int offset; - public NetBuffer Buffer; - - public NetBufferWriteStream(NetBuffer buffer) - { - this.Buffer = buffer; - this.offset = buffer.LengthBits; - } - - public override bool CanRead - { - get - { - return false; - } - } - - public override bool CanSeek - { - get - { - return true; - } - } - - public override bool CanWrite - { - get - { - return true; - } - } - - public override long Length - { - get - { - throw new NotSupportedException(); - } - } - - public override long Position - { - get - { - return (long)((this.Buffer.LengthBits - this.offset) / 8); - } - set - { - this.Buffer.LengthBits = (int)((long)this.offset + value * 8L); - } - } - - public override void Flush() - { - } - - public override int Read(byte[] buffer, int offset, int count) - { - throw new NotSupportedException(); - } - - public override long Seek(long offset, SeekOrigin origin) - { - switch (origin) - { - case SeekOrigin.Begin: - this.Position = offset; - break; - case SeekOrigin.Current: - this.Position += offset; - break; - case SeekOrigin.End: - throw new NotSupportedException(); - } - return this.Position; - } - - public override void SetLength(long value) - { - throw new NotSupportedException(); - } - - public override void Write(byte[] buffer, int offset, int count) - { - this.Buffer.Write(buffer, offset, count); - } - } -} diff --git a/GeneralMods/StardustCore/NetCode/NetKeyValuePair.cs b/GeneralMods/StardustCore/NetCode/NetKeyValuePair.cs deleted file mode 100644 index afeb5082..00000000 --- a/GeneralMods/StardustCore/NetCode/NetKeyValuePair.cs +++ /dev/null @@ -1,30 +0,0 @@ -using Netcode; -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace StardustCore.NetCode -{ - public class NetKeyValuePair : NetField, NetKeyValuePair> where KField : NetField, new() where VField : NetField, new() - { - public override void Set(KeyValuePair newValue) - { - this.value = newValue; - } - - protected override void ReadDelta(BinaryReader reader, NetVersion version) - { - throw new NotImplementedException(); - } - - protected override void WriteDelta(BinaryWriter writer) - { - throw new NotImplementedException(); - } - - - } -} diff --git a/GeneralMods/StardustCore/NetCode/NetPairs/NetVector2MultiTilePair.cs b/GeneralMods/StardustCore/NetCode/NetPairs/NetVector2MultiTilePair.cs deleted file mode 100644 index f719de5e..00000000 --- a/GeneralMods/StardustCore/NetCode/NetPairs/NetVector2MultiTilePair.cs +++ /dev/null @@ -1,36 +0,0 @@ -using Microsoft.Xna.Framework; -using Netcode; -using StardustCore.Objects; -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace StardustCore.NetCode.NetPairs -{ - public class NetVector2MultiTilePair: NetKeyValuePair - { - - public NetVector2MultiTilePair() - { - - } - - public NetVector2MultiTilePair(KeyValuePair hello) - { - this.Set(Value); - } - - public override void Read(BinaryReader reader, NetVersion version) - { - base.Read(reader, version); - } - - public override void Write(BinaryWriter writer) - { - base.Write(writer); - } - } -} diff --git a/GeneralMods/StardustCore/NetCode/NetTexure2DExtended.cs b/GeneralMods/StardustCore/NetCode/NetTexure2DExtended.cs deleted file mode 100644 index 25cbcbeb..00000000 --- a/GeneralMods/StardustCore/NetCode/NetTexure2DExtended.cs +++ /dev/null @@ -1,84 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Microsoft.Xna.Framework; -using Microsoft.Xna.Framework.Graphics; -using Netcode; -using StardewValley; -using StardustCore.UIUtilities; - -namespace StardustCore.NetCode -{ - public class NetTexture2DExtended : Netcode.NetField - { - - - - public NetTexture2DExtended() - { - - } - - public NetTexture2DExtended(Texture2DExtended value) : base(value) - { - this.Set(value); - } - - public void ReadData(BinaryReader reader, NetVersion version) - { - ReadDelta(reader, version); - } - - public override void Set(Texture2DExtended newValue) - { - this.value = newValue; - } - - public void WriteData(BinaryWriter writer) - { - WriteDelta(writer); - } - - protected override void ReadDelta(BinaryReader reader, NetVersion version) - { - NetString name = new NetString(); - name.Read(reader, version); - - NetString iD = new NetString(); - iD.Read(reader, version); - - - StardustCore.ModCore.ModMonitor.Log("Name: "+name); - StardustCore.ModCore.ModMonitor.Log("Mod ID:"+iD); - - - //Texture2D texture = new Texture2D(Game1.graphics.GraphicsDevice,width,height); - if (String.IsNullOrEmpty(iD.Value) || String.IsNullOrEmpty(name.Value)) - { - ModCore.ModMonitor.Log("FOR SOME REASON THE TEXTURE INFO IS NULL????"); - return; - } - - - Texture2DExtended texture = ModCore.TextureManagers[iD.Value].getTexture(name.Value); - if (texture == null) throw new Exception("FOR SOME REASON NULL IS BEING READ???"); - this.Value = texture; - - } - - protected override void WriteDelta(BinaryWriter writer) - { - NetString name = new NetString(Value.Name); - name.Write(writer); - - NetString iD = new NetString(Value.modID); - iD.Write(writer); - - } - - - } -} diff --git a/GeneralMods/StardustCore/NetCode/Objects/NetCoreObject.cs b/GeneralMods/StardustCore/NetCode/Objects/NetCoreObject.cs deleted file mode 100644 index 7b195950..00000000 --- a/GeneralMods/StardustCore/NetCode/Objects/NetCoreObject.cs +++ /dev/null @@ -1,160 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Runtime.Serialization.Formatters.Binary; -using System.Text; -using System.Threading.Tasks; -using Netcode; -using StardewValley; -using StardustCore.NetCode.Graphics; -using StardustCore.UIUtilities; - -namespace StardustCore.NetCode -{ - /* - * Need to send default source rect and width - * - */ - - - public class NetCoreObject : Netcode.NetField - { - - - public NetInt which; - public NetVector2 tilePos; - - - public NetRectangle boundingBox; - - - - public NetVector2 position; - public NetInt Decoration_type; - public NetInt rotations; - public NetInt currentRotation; - public NetInt sourceIndexOffset; - public NetVector2 drawPosition; - public NetRectangle sourceRect; - public NetRectangle defaultSourceRect; - public NetRectangle defaultBoundingBox; - public NetString description; - public NetTexture2DExtended texture; - public NetBool flipped; - public NetBool flaggedForPickup; - public NetBool lightGlowAdded; - public NetObjectList inventory; - public NetInt InventoryMaxSize; - public NetBool itemReadyForHarvest; - public NetBool lightsOn; - public NetString locationName; - public NetColor lightColor; - public NetBool removable; - public NetColor drawColor; - public NetBool useXML; - public NetString serializationName; - - - //Animation Manager..... - public NetAnimationManager animationManager; - - - - - public NetCoreObject() - { - - } - - public NetCoreObject(CoreObject value) : base(value) - { - Set(value); - } - - public override void Set(CoreObject newValue) - { - this.value = newValue; - } - - protected override void ReadDelta(BinaryReader reader, NetVersion version) - { - texture = new NetTexture2DExtended(); - texture.Read(reader, version); - - Value.setExtendedTexture(texture.Value); - - which = new NetInt(); - which.Read(reader, version); - Value.ParentSheetIndex = which.Value; - - tilePos = new NetVector2(); - tilePos.Read(reader, version); - Value.TileLocation = tilePos.Value; - - InventoryMaxSize = new NetInt(); - InventoryMaxSize.Read(reader, version); - Value.inventoryMaxSize = InventoryMaxSize.Value; - - sourceRect = new NetRectangle(); - sourceRect.Read(reader, version); - Value.sourceRect = sourceRect.Value; - - boundingBox = new NetRectangle(); - boundingBox.Read(reader, version); - Value.boundingBox.Value = boundingBox.Value; - - drawPosition = new NetVector2(); - drawPosition.Read(reader, version); - Value.drawPosition = drawPosition.Value; - - locationName = new NetString(); - locationName.Read(reader, version); - Value.locationsName = locationName.Value; - Value.thisLocation = Game1.getLocationFromName(locationName.Value); - - /* - animationManager = new NetAnimationManager(); - animationManager.Read(reader, version); - Value.animationManager = animationManager.Value; - */ - - } - - protected override void WriteDelta(BinaryWriter writer) - { - texture = new NetTexture2DExtended(Value.getExtendedTexture()); - texture.Write(writer); - - which = new NetInt(Value.ParentSheetIndex); - which.Write(writer); - - tilePos = new NetVector2(Value.TileLocation); - tilePos.Write(writer); - - InventoryMaxSize = new NetInt(Value.inventoryMaxSize); - InventoryMaxSize.Write(writer); - - sourceRect = new NetRectangle(Value.sourceRect); - sourceRect.Write(writer); - - boundingBox = new NetRectangle(Value.boundingBox.Value); - sourceRect.Write(writer); - - drawPosition = new NetVector2(Value.drawPosition); - drawPosition.Write(writer); - - locationName = new NetString(Value.locationsName); - locationName.Write(writer); - - /* - if (Value.animationManager == null) - { - throw new Exception("WTF, why is the animation manager null???????????"); - } - animationManager = new NetAnimationManager(Value.animationManager); - animationManager.Write(writer); - */ - } - } -} \ No newline at end of file diff --git a/GeneralMods/StardustCore/NetCode/Objects/NetMultiTileComponent.cs b/GeneralMods/StardustCore/NetCode/Objects/NetMultiTileComponent.cs deleted file mode 100644 index 62bfed63..00000000 --- a/GeneralMods/StardustCore/NetCode/Objects/NetMultiTileComponent.cs +++ /dev/null @@ -1,116 +0,0 @@ -using Netcode; -using StardustCore.NetCode.Graphics; -using StardustCore.Objects; -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace StardustCore.NetCode.Objects -{ - public class NetMultiTileComponent : Netcode.NetField - { - private NetTexture2DExtended texture; - private NetInt which; - private NetVector2 tilePos; - private NetRectangle sourceRect; - private NetRectangle boundingBox; - private NetVector2 drawPosition; - private NetAnimationManager animationManager; - - public NetMultiTileComponent() - { - - } - - public NetMultiTileComponent(MultiTileComponent obj): base(obj) - { - Set(obj); - } - - public NetInt InventoryMaxSize { get; private set; } - - public override void Set(MultiTileComponent newValue) - { - this.value = newValue; - } - - protected override void ReadDelta(BinaryReader reader, NetVersion version) - { - - texture = new NetTexture2DExtended(); - texture.Read(reader, version); - - which = new NetInt(); - which.Read(reader, version); - Value.ParentSheetIndex = which.Value; - - tilePos = new NetVector2(); - tilePos.Read(reader, version); - Value.TileLocation = tilePos.Value; - - InventoryMaxSize = new NetInt(); - InventoryMaxSize.Read(reader, version); - Value.inventoryMaxSize = InventoryMaxSize.Value; - - sourceRect = new NetRectangle(); - sourceRect.Read(reader, version); - Value.sourceRect = sourceRect.Value; - - boundingBox = new NetRectangle(); - boundingBox.Read(reader, version); - Value.boundingBox.Value = boundingBox.Value; - - drawPosition = new NetVector2(); - drawPosition.Read(reader, version); - Value.drawPosition = drawPosition.Value; - - animationManager = new NetAnimationManager(); - animationManager.Read(reader, version); - Value.animationManager = animationManager.Value; - //NetCoreObject obj = new NetCoreObject(); - //obj.ReadData(reader, version); - - /* - NetMultiTileObject hmm = new NetMultiTileObject(); - hmm.Read(reader,version); - Value.containerObject = hmm.Value; - */ - } - - protected override void WriteDelta(BinaryWriter writer) - { - //NetCoreObject obj = new NetCoreObject(Value); - //obj.WriteData(writer); - - texture = new NetTexture2DExtended(Value.getExtendedTexture()); - texture.Write(writer); - - which = new NetInt(Value.ParentSheetIndex); - which.Write(writer); - - tilePos = new NetVector2(Value.TileLocation); - tilePos.Write(writer); - - InventoryMaxSize = new NetInt(Value.inventoryMaxSize); - InventoryMaxSize.Write(writer); - - sourceRect = new NetRectangle(Value.sourceRect); - sourceRect.Write(writer); - - boundingBox = new NetRectangle(Value.boundingBox.Value); - sourceRect.Write(writer); - - drawPosition = new NetVector2(Value.drawPosition); - drawPosition.Write(writer); - - animationManager = new NetAnimationManager(Value.animationManager); - animationManager.Write(writer); - - //NetMultiTileObject hmm = new NetMultiTileObject(Value.containerObject); - //hmm.Write(writer); - } - } -} diff --git a/GeneralMods/StardustCore/NetCode/Objects/NetMultiTileObject.cs b/GeneralMods/StardustCore/NetCode/Objects/NetMultiTileObject.cs deleted file mode 100644 index 0653a03e..00000000 --- a/GeneralMods/StardustCore/NetCode/Objects/NetMultiTileObject.cs +++ /dev/null @@ -1,81 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Microsoft.Xna.Framework; -using Netcode; -using StardustCore.Objects; - -namespace StardustCore.NetCode.Objects -{ - public class NetMultiTileObject : Netcode.NetField - { - public NetMultiTileObject() - { - - } - - public NetMultiTileObject(MultiTileObject obj): base(obj) - { - - } - - public override void Set(MultiTileObject newValue) - { - this.value = newValue; - } - - protected override void ReadDelta(BinaryReader reader, NetVersion version) - { - NetCoreObject obj = new NetCoreObject(); - obj.Read(reader, version); - //Values already taken care of in NetCoreObject - - NetList, NetKeyValuePair> netList = new NetList, NetKeyValuePair>(); - netList.Read(reader, version); - if (netList.ToList() == null) throw new Exception("WTF WHY IS NETLIST NULL?!?!?!?!"); - - foreach(var v in netList.ToList()) - { - StardustCore.ModCore.ModMonitor.Log(v.Value.name, StardewModdingAPI.LogLevel.Alert); - } - - Value.objects = netList.ToList(); - //this.value.objects=netList.ToArray().ToList(); - - - - NetColor col = new NetColor(); - col.Read(reader, version); - Value.categoryColor = col.Value; - - NetString name = new NetString(); - name.Read(reader, version); - Value.categoryName = name.Value; - } - - protected override void WriteDelta(BinaryWriter writer) - { - NetCoreObject obj = new NetCoreObject(Value); - obj.Write(writer); - - NetList, NetKeyValuePair> netList = new NetList, NetKeyValuePair>(); - - if (Value.objects == null) throw new Exception("Trying to write null object list!"); - foreach (var v in Value.objects) - { - StardustCore.ModCore.ModMonitor.Log(v.Value.name); - netList.Add(v); - } - netList.Write(writer); - - NetColor col = new NetColor(Value.categoryColor); - col.Write(writer); - - NetString catName = new NetString(Value.categoryName); - catName.Write(writer); - } - } -} diff --git a/GeneralMods/StardustCore/Objects/CoreObject.cs b/GeneralMods/StardustCore/Objects/CoreObject.cs deleted file mode 100644 index 73d76bf5..00000000 --- a/GeneralMods/StardustCore/Objects/CoreObject.cs +++ /dev/null @@ -1,1354 +0,0 @@ -using Microsoft.Xna.Framework; -using Microsoft.Xna.Framework.Graphics; -using Netcode; -using Newtonsoft.Json; -using StardewModdingAPI; -using StardewValley; -using StardewValley.Locations; -using StardewValley.Menus; -using StardewValley.Objects; -using StardustCore.Animations; -using StardustCore.Interfaces; -using StardustCore.UIUtilities; -using System; -using System.Collections.Generic; -using System.IO; -using System.Xml.Serialization; - -namespace StardustCore -{ - /// - /// Extends StardewValley.Object. Might be broken and just mainly uses a ton of junk code. Just extend off of this. - /// - /// - - public class CoreObject : StardewValley.Object, IItemSerializeable - { - public Vector2 position; - - public int Decoration_type; - - public int rotations; - - public int currentRotation; - - public int sourceIndexOffset; - - public Vector2 drawPosition; - - public Rectangle sourceRect; - - public Rectangle defaultSourceRect; - - public Rectangle defaultBoundingBox; - - public string description; - - - protected Texture2DExtended TextureSheet; - - public new bool flipped; - - [XmlIgnore] - public bool flaggedForPickUp; - - public bool lightGlowAdded; - - public List inventory; - - public int inventoryMaxSize; - - public bool itemReadyForHarvest; - - public bool lightsOn; - - public GameLocation thisLocation; - - public Color lightColor; - - public bool removable; - - public string locationsName; - - public Color drawColor; - - public bool useXML; - - public AnimationManager animationManager; - - public string serializationName; - - public string textureName; - - public override string Name - { - get - { - return this.name; - } - - } - - /// - /// Initialize some basic custom logic such as inventory for CoreObjects. - /// - /// The max size of this object's internal inventory. - /// The location for this object to be positioned. - public virtual void InitializeBasics(int InvMaxSize, Vector2 tile) - { - this.inventory = new List(); - this.inventoryMaxSize = InvMaxSize; - this.TileLocation = tile; - lightsOn = false; - - lightColor = Color.Black; - - base.initNetFields(); - this.NetFields.AddField(new NetCode.NetCoreObject(this)); - this.NetFields.AddFields(new INetSerializable[] { new NetString(this.Name), new NetRectangle(this.defaultSourceRect), new NetString(this.description) }); - - - } - - public CoreObject() - { - base.initNetFields(); - this.updateDrawPosition(); - this.NetFields.AddField(new NetCode.NetCoreObject(this)); - - } - - public CoreObject(bool f) - { - base.initNetFields(); - //does nothng - this.NetFields.AddField(new NetCode.NetCoreObject(this)); - - } - - public CoreObject(Texture2DExtended texture,int which, Vector2 Tile, int InventoryMaxSize):base() - { - var ok=Game1.getAllFarmers(); - this.Type = "Not Sure"; - this.CanBeSetDown = true; - this.CanBeGrabbed = true; - this.IsSpawnedObject = false; - this.questItem.Value = false; - this.questId.Value =0; - this.IsOn = false; - this.heldObject.Value = null; - this.Stack = 1; - - - InitializeBasics(InventoryMaxSize, Tile); - if (TextureSheet == null) - { - TextureSheet = texture; - } - Dictionary dictionary = Game1.content.Load>("Data\\Furniture"); - string[] array = dictionary[which].Split(new char[] - { - '/' - }); - this.name = array[0]; - - this.Decoration_type = this.getTypeNumberFromName(array[1]); - this.description = "Can be placed inside your house."; - this.defaultSourceRect = new Rectangle(which * 16 % TextureSheet.getTexture().Width, which * 16 / TextureSheet.getTexture().Width * 16, 1, 1); - if (array[2].Equals("-1")) - { - this.sourceRect = new Rectangle(0, 0, 16, 16); - this.defaultSourceRect = this.sourceRect; - } - else - { - this.defaultSourceRect.Width = 16; - this.defaultSourceRect.Height = 16; - this.sourceRect = new Rectangle((which * 16) % TextureSheet.getTexture().Width, (which * 16) / TextureSheet.getTexture().Width * 16, this.defaultSourceRect.Width, this.defaultSourceRect.Height); - this.defaultSourceRect = this.sourceRect; - } - this.defaultBoundingBox = new Rectangle((int)this.TileLocation.X, (int)this.TileLocation.Y, 1, 1); - if (array[3].Equals("-1")) - { - this.boundingBox.Value = this.getDefaultBoundingBoxForType(this.Decoration_type); - this.defaultBoundingBox = this.boundingBox.Value; - } - else - { - this.defaultBoundingBox.Width = Convert.ToInt32(array[3].Split(new char[] - { - ' ' - })[0]); - this.defaultBoundingBox.Height = Convert.ToInt32(array[3].Split(new char[] - { - ' ' - })[1]); - this.boundingBox.Value = new Rectangle((int)this.TileLocation.X * Game1.tileSize, (int)this.TileLocation.Y * Game1.tileSize, 1 * Game1.tileSize, 1 * Game1.tileSize); - this.defaultBoundingBox = this.boundingBox.Value; - } - - this.boundingBox.Value = new Rectangle(0, 0, Game1.tileSize, Game1.tileSize); - this.updateDrawPosition(); - this.rotations = Convert.ToInt32(array[4]); - this.Price = Convert.ToInt32(array[5]); - this.ParentSheetIndex = which; - this.serializationName=this.GetType().ToString(); - - - this.drawPosition = Vector2.Zero; - this.TileLocation = tileLocation; - this.locationsName = ""; - this.position = this.TileLocation * (Game1.tileSize); - this.thisLocation = null; - - this.textureName = this.TextureSheet.Name; - - this.animationManager = new AnimationManager(this.TextureSheet, new Animation(this.sourceRect), false); - } - - public override string getDescription() - { - return this.description; - } - - /// - /// A "placement" action that doesn't put the object in the world, but set it's position accordingly. - /// - /// The GameLocation that this object will be placed at. - /// The x tile location to "place". - /// The y tile location to "place". - /// If true then the Serialization manager will keep track of this object. - public virtual void fakePlacementAction(GameLocation location, int tileX, int tileY,bool trackSerialization=true) - { - this.thisLocation = location; - this.TileLocation = new Vector2(tileX, tileY); - this.position = this.TileLocation*(Game1.tileSize); - if (trackSerialization) - { - if (ModCore.SerializationManager.trackedObjectList.Contains(this)) return; - ModCore.SerializationManager.trackedObjectList.Add(this); - } - } - - public override bool performDropDownAction(StardewValley.Farmer who) - { - this.resetOnPlayerEntry((who == null) ? Game1.currentLocation : who.currentLocation); - return false; - } - - public override void hoverAction() - { - base.hoverAction(); - if (!Game1.player.isInventoryFull()) - { - Game1.mouseCursor = 2; - } - } - - public override bool checkForAction(StardewValley.Farmer who, bool justCheckingForActivity = false) - { - var mState = Microsoft.Xna.Framework.Input.Mouse.GetState(); - if (mState.RightButton == Microsoft.Xna.Framework.Input.ButtonState.Pressed) - { - // Game1.showRedMessage("YOOO"); - //do some stuff when the right button is down - // rotate(); - if (this.heldObject.Value != null) - { - // Game1.player.addItemByMenuIfNecessary(this.heldObject); - // this.heldObject = null; - } - else - { - // this.heldObject = Game1.player.ActiveObject; - // Game1.player.removeItemFromInventory(heldObject); - } - //this.minutesUntilReady = 30; - // Log.AsyncC("placed item!"); - } - else - { - //Game1.showRedMessage("CRY"); - } - - if (justCheckingForActivity) - { - return true; - } - return this.clicked(who); - } - - public override bool clicked(Farmer who) - { - performRemoveAction(this.TileLocation, this.thisLocation); - who.addItemToInventory(this); - - return true; - } - - public virtual bool RightClicked(StardewValley.Farmer who) - { - // StardewModdingAPI.Log.AsyncC(lightColor); - // Game1.activeClickableMenu = new Revitalize.Menus.LightCustomizer(this); - - // Game1.showRedMessage("THIS IS CLICKED!!!"); - //var mState = Microsoft.Xna.Framework.Input.Mouse.GetState(); - /* - - Game1.haltAfterCheck = false; - if (this.Decoration_type == 11 && who.ActiveObject != null && who.ActiveObject != null && this.heldObject == null) - { - // Game1.showRedMessage("Why1?"); - return false; - } - if (this.heldObject == null && (who.ActiveObject == null || !(who.ActiveObject is Light))) - { - if (Game1.player.currentLocation is FarmHouse) - { - // - Game1.player.addItemByMenuIfNecessary(this); - removeLights(this.thisLocation); - this.lightsOn = false; - Game1.playSound("coin"); - // this.flaggedForPickUp = true; - return true; - } - else - { - // return true; - // this.heldObject = new Light(parentSheetIndex, Vector2.Zero, this.lightColor, this.inventoryMaxSize); - Game1.player.addItemByMenuIfNecessary(this); - removeLights(this.thisLocation); - this.lightsOn = false; - Game1.playSound("coin"); - return true; - - } - } - if (this.heldObject != null && who.addItemToInventoryBool(this.heldObject, false)) - { - // Game1.showRedMessage("Why3?"); - // if(this.heldObject!=null) Game1.player.addItemByMenuIfNecessary((Item)this.heldObject); - Util.addItemToInventoryElseDrop(this); - this.heldObject.performRemoveAction(this.tileLocation, who.currentLocation); - this.heldObject = null; - Game1.playSound("coin"); - removeLights(this.thisLocation); - this.lightsOn = false; - return true; - } - - */ - - return false; - } - - public override void DayUpdate(GameLocation location) - { - base.DayUpdate(location); - this.lightGlowAdded = false; - if (!Game1.isDarkOut() || (Game1.newDay && !Game1.isRaining)) - { - this.removeLights(location); - return; - } - this.addLights(location); - } - - public virtual void resetOnPlayerEntry(GameLocation environment) - { - this.removeLights(environment); - if (Game1.isDarkOut()) - { - this.addLights(environment); - } - } - - /// - /// Drops in an item into this object. I.E putting an egg in a mayo maker. - /// - /// - /// - /// - /// - public override bool performObjectDropInAction(Item dropIn, bool probe, StardewValley.Farmer who) - { - // Log.AsyncG("HEY!"); - if (this.heldObject.Value == null && (dropIn is Item)) //Basically who cares accept whatever. - { - try { - this.heldObject.Value = (StardewValley.Object)dropIn.getOne(); - this.heldObject.Value.TileLocation = this.TileLocation; - this.heldObject.Value.boundingBox.X = this.boundingBox.X; - this.heldObject.Value.boundingBox.Y = this.boundingBox.Y; - // Log.AsyncO(getDefaultBoundingBoxForType((dropIn as CoreObject).Decoration_type)); - this.heldObject.Value.performDropDownAction(who); - if (!probe) - { - Game1.playSound("woodyStep"); - // Log.AsyncC("HUH?"); - if (who != null) - { - who.reduceActiveItemByOne(); - } - } - return true; - } - catch(Exception err) - { - ModCore.ModMonitor.Log(err.ToString(),LogLevel.Error); - return false; - } - } - return false; - } - - public virtual void addLights(GameLocation environment) - { - if (this.Decoration_type == 7) - { - if (this.sourceIndexOffset == 0) - { - this.sourceRect = this.defaultSourceRect; - this.sourceRect.X = this.sourceRect.X + this.sourceRect.Width; - } - this.sourceIndexOffset = 1; - if (this.lightSource == null) - { - Utility.removeLightSource((int)(this.TileLocation.X * 2000f + this.TileLocation.Y)); - this.lightSource = new LightSource(4, new Vector2((float)(this.boundingBox.X + Game1.tileSize / 2), (float)(this.boundingBox.Y - Game1.tileSize)), 2f, lightColor, (int)(this.TileLocation.X * 2000f + this.TileLocation.Y)); - Game1.currentLightSources.Add(this.lightSource); - // Log.AsyncG("LIGHT SOURCE ADDED FFFFFFF"); - return; - } - } - else if (this.Decoration_type == 13) - { - if (this.sourceIndexOffset == 0) - { - this.sourceRect = this.defaultSourceRect; - this.sourceRect.X = this.sourceRect.X + this.sourceRect.Width; - } - this.sourceIndexOffset = 1; - if (this.lightGlowAdded) - { - environment.lightGlows.Remove(new Vector2((float)(this.boundingBox.X + Game1.tileSize / 2), (float)(this.boundingBox.Y + Game1.tileSize))); - this.lightGlowAdded = false; - } - } - else - { - - if (this.sourceIndexOffset == 0) - { - this.sourceRect = this.defaultSourceRect; - this.sourceRect.X = this.sourceRect.X + this.sourceRect.Width; - } - this.sourceIndexOffset = 1; - if (this.lightSource == null) - { - Utility.removeLightSource((int)(this.TileLocation.X * 2000f + this.TileLocation.Y)); - this.lightSource = new LightSource(4, new Vector2((float)(this.boundingBox.X + Game1.tileSize / 2), (float)(this.boundingBox.Y - Game1.tileSize)), 2f, lightColor, (int)(this.TileLocation.X * 2000f + this.TileLocation.Y)); - Game1.currentLightSources.Add(this.lightSource); - return; - } - - } - } - - - /// - /// Add a light source to this location. - /// - /// The game location to add the light source in. - /// The color of the light to be added - public virtual void addLights(GameLocation environment, Color c) - { - if (this.sourceIndexOffset == 0) - { - this.sourceRect = this.defaultSourceRect; - this.sourceRect.X = this.sourceRect.X + this.sourceRect.Width; - } - this.sourceIndexOffset = 1; - if (this.lightSource == null) - { - Utility.removeLightSource((int)(this.TileLocation.X * 2000f + this.TileLocation.Y)); - this.lightSource = new LightSource(4, new Vector2((float)(this.boundingBox.X + Game1.tileSize / 2), (float)(this.boundingBox.Y - Game1.tileSize)), 2f, c, (int)(this.TileLocation.X * 2000f + this.TileLocation.Y)); - Game1.currentLightSources.Add(this.lightSource); - return; - } - } - - /// - /// Removes a lightsource from the game location. - /// - /// The game location to remove the light source from. - public void removeLights(GameLocation environment) - { - if (this.Decoration_type == 7) - { - if (this.sourceIndexOffset == 1) - { - this.sourceRect = this.defaultSourceRect; - } - this.sourceIndexOffset = 0; - Utility.removeLightSource((int)(this.TileLocation.X * 2000f + this.TileLocation.Y)); - this.lightSource = null; - return; - } - if (this.Decoration_type == 13) - { - if (this.sourceIndexOffset == 1) - { - this.sourceRect = this.defaultSourceRect; - } - this.sourceIndexOffset = 0; - if (Game1.isRaining) - { - this.sourceRect = this.defaultSourceRect; - this.sourceRect.X = this.sourceRect.X + this.sourceRect.Width; - this.sourceIndexOffset = 1; - return; - } - if (!this.lightGlowAdded && !environment.lightGlows.Contains(new Vector2((float)(this.boundingBox.X + Game1.tileSize / 2), (float)(this.boundingBox.Y + Game1.tileSize)))) - { - environment.lightGlows.Add(new Vector2((float)(this.boundingBox.X + Game1.tileSize / 2), (float)(this.boundingBox.Y + Game1.tileSize))); - } - this.lightGlowAdded = true; - } - - if (this.sourceIndexOffset == 1) - { - this.sourceRect = this.defaultSourceRect; - } - this.sourceIndexOffset = 0; - Utility.removeLightSource((int)(this.TileLocation.X * 2000f + this.TileLocation.Y)); - this.lightSource = null; - return; - } - - - - - public override bool minutesElapsed(int minutes, GameLocation environment) - { - // Log.Info("minutes passed in"+minutes); - // Log.Info("minues remaining" + this.minutesUntilReady); - this.MinutesUntilReady = (this.MinutesUntilReady - minutes); - if (Game1.isDarkOut()) - { - // this.addLights(environment,this.lightColor); - this.addLights(environment); - } - else - { - this.removeLights(environment); - } - - if (minutesUntilReady == 0) - { - // Log.AsyncC(this.name + "Is ready!"); - // Log.AsyncC(Game1.player.getStandingPosition()); - // Vector2 v2 = new Vector2(this.tileLocation.X * Game1.tileSize, this.tileLocation.Y * Game1.tileSize); - //Game1.createItemDebris((Item)this.heldObject, v2, Game1.player.getDirection()); - // minutesUntilReady = 30; - } - - return false; - } - - public override void performRemoveAction(Vector2 tileLocation, GameLocation environment) - { - this.removeLights(environment); - if (this.Decoration_type == 13 && this.lightGlowAdded) - { - environment.lightGlows.Remove(new Vector2((float)(this.boundingBox.X + Game1.tileSize / 2), (float)(this.boundingBox.Y + Game1.tileSize))); - this.lightGlowAdded = false; - } - try - { - this.spillInventoryEverywhere(); - } - catch(Exception err) - { - - } - - - StardustCore.ModCore.SerializationManager.trackedObjectList.Remove(this); - this.thisLocation.removeObject(this.TileLocation, false); - this.thisLocation = null; - this.locationsName = ""; - - base.performRemoveAction(tileLocation, environment); - } - - public virtual void rotate() - { - if (this.rotations < 2) - { - return; - } - int num = (this.rotations == 4) ? 1 : 2; - this.currentRotation += num; - this.currentRotation %= 4; - this.flipped = false; - Point point = default(Point); - int num2 = this.Decoration_type; - switch (num2) - { - case 2: - point.Y = 1; - point.X = -1; - break; - case 3: - point.X = -1; - point.Y = 1; - break; - case 4: - break; - case 5: - point.Y = 0; - point.X = -1; - break; - default: - if (num2 == 12) - { - point.X = 0; - point.Y = 0; - } - break; - } - bool flag = this.Decoration_type == 5 || this.Decoration_type == 12 || this.ParentSheetIndex == 724 || this.ParentSheetIndex == 727; - bool flag2 = this.defaultBoundingBox.Width != this.defaultBoundingBox.Height; - if (flag && this.currentRotation == 2) - { - this.currentRotation = 1; - } - if (flag2) - { - int height = this.boundingBox.Height; - switch (this.currentRotation) - { - case 0: - case 2: - this.boundingBox.Height = this.defaultBoundingBox.Height; - this.boundingBox.Width = this.defaultBoundingBox.Width; - break; - case 1: - case 3: - this.boundingBox.Height = this.boundingBox.Width + point.X * Game1.tileSize; - this.boundingBox.Width = height + point.Y * Game1.tileSize; - break; - } - } - Point point2 = default(Point); - int num3 = this.Decoration_type; - if (num3 == 12) - { - point2.X = 1; - point2.Y = -1; - } - if (flag2) - { - switch (this.currentRotation) - { - case 0: - this.sourceRect = this.defaultSourceRect; - break; - case 1: - this.sourceRect = new Rectangle(this.defaultSourceRect.X + this.defaultSourceRect.Width, this.defaultSourceRect.Y, this.defaultSourceRect.Height - 16 + point.Y * 16 + point2.X * 16, this.defaultSourceRect.Width + 16 + point.X * 16 + point2.Y * 16); - break; - case 2: - this.sourceRect = new Rectangle(this.defaultSourceRect.X + this.defaultSourceRect.Width + this.defaultSourceRect.Height - 16 + point.Y * 16 + point2.X * 16, this.defaultSourceRect.Y, this.defaultSourceRect.Width, this.defaultSourceRect.Height); - break; - case 3: - this.sourceRect = new Rectangle(this.defaultSourceRect.X + this.defaultSourceRect.Width, this.defaultSourceRect.Y, this.defaultSourceRect.Height - 16 + point.Y * 16 + point2.X * 16, this.defaultSourceRect.Width + 16 + point.X * 16 + point2.Y * 16); - this.flipped = true; - break; - } - } - else - { - this.flipped = (this.currentRotation == 3); - if (this.rotations == 2) - { - this.sourceRect = new Rectangle(this.defaultSourceRect.X + ((this.currentRotation == 2) ? 1 : 0) * this.defaultSourceRect.Width, this.defaultSourceRect.Y, this.defaultSourceRect.Width, this.defaultSourceRect.Height); - } - else - { - this.sourceRect = new Rectangle(this.defaultSourceRect.X + ((this.currentRotation == 3) ? 1 : this.currentRotation) * this.defaultSourceRect.Width, this.defaultSourceRect.Y, this.defaultSourceRect.Width, this.defaultSourceRect.Height); - } - } - if (flag && this.currentRotation == 1) - { - this.currentRotation = 2; - } - this.updateDrawPosition(); - } - - public virtual bool isGroundFurniture() - { - return this.Decoration_type != 13 && this.Decoration_type != 6 && this.Decoration_type != 13; - } - - /// - /// Determines whether or not this item can be given as a gift. Default is always false. - /// - /// - public override bool canBeGivenAsGift() - { - return false; - } - - - public virtual void updateDrawPosition() - { - this.drawPosition = new Vector2((float)this.boundingBox.X, (float)(this.boundingBox.Y - (this.sourceRect.Height * Game1.pixelZoom - this.boundingBox.Height))); - } - - public virtual int getTilesWide() - { - return this.boundingBox.Width / Game1.tileSize; - } - - public virtual int getTilesHigh() - { - return this.boundingBox.Height / Game1.tileSize; - } - - public override bool canStackWith(Item other) - { - if (other.Name == this.name && (other as CoreObject).textureName == this.textureName) return true; - else return false; - } - - public override bool placementAction(GameLocation location, int x, int y, StardewValley.Farmer who = null) - { - - StardustCore.ModCore.ModMonitor.Log("X Value:" + x); - Point point = new Point(x, y); - - - this.TileLocation = new Vector2((float)point.X/Game1.tileSize, (float)point.Y/Game1.tileSize); - - this.boundingBox.Value = new Rectangle((int)tileLocation.X, (int)tileLocation.Y, Game1.tileSize, Game1.tileSize); - - foreach (Farmer farmer in Game1.getAllFarmers()) - { - if (location == farmer.currentLocation) - { - if (farmer.GetBoundingBox().Intersects(this.boundingBox.Value)) - { - Game1.showRedMessage("Can't place on top of a person."); - bool result = false; - return result; - } - } - } - - this.updateDrawPosition(); - - bool f = Utilities.placementAction(this, location, x, y, StardustCore.ModCore.SerializationManager,who); - this.thisLocation = Game1.player.currentLocation; - return f; - // Game1.showRedMessage("Can only be placed in House"); - // return false; - - - - - } - - public override bool isPlaceable() - { - return true; - } - - public override Rectangle getBoundingBox(Vector2 tileLocation) - { - return this.boundingBox.Value; - } - - private Rectangle getDefaultSourceRectForType(int tileIndex, int type) - { - int num; - int num2; - switch (type) - { - case 0: - num = 1; - num2 = 2; - goto IL_94; - case 1: - num = 2; - num2 = 2; - goto IL_94; - case 2: - num = 3; - num2 = 2; - goto IL_94; - case 3: - num = 2; - num2 = 2; - goto IL_94; - case 4: - num = 2; - num2 = 2; - goto IL_94; - case 5: - num = 5; - num2 = 3; - goto IL_94; - case 6: - num = 2; - num2 = 2; - goto IL_94; - case 7: - num = 1; - num2 = 3; - goto IL_94; - case 8: - num = 1; - num2 = 2; - goto IL_94; - case 10: - num = 2; - num2 = 3; - goto IL_94; - case 11: - num = 2; - num2 = 3; - goto IL_94; - case 12: - num = 3; - num2 = 2; - goto IL_94; - case 13: - num = 1; - num2 = 2; - goto IL_94; - } - num = 1; - num2 = 2; - IL_94: - return new Rectangle(tileIndex * 16 % TextureSheet.getTexture().Width, tileIndex * 16 / TextureSheet.getTexture().Width * 16, num * 16, num2 * 16); - } - - private Rectangle getDefaultBoundingBoxForType(int type) - { - int num; - int num2; - switch (type) - { - case 0: - num = 1; - num2 = 1; - goto IL_94; - case 1: - num = 2; - num2 = 1; - goto IL_94; - case 2: - num = 3; - num2 = 1; - goto IL_94; - case 3: - num = 2; - num2 = 1; - goto IL_94; - case 4: - num = 2; - num2 = 1; - goto IL_94; - case 5: - num = 5; - num2 = 2; - goto IL_94; - case 6: - num = 2; - num2 = 2; - goto IL_94; - case 7: - num = 1; - num2 = 1; - goto IL_94; - case 8: - num = 1; - num2 = 1; - goto IL_94; - case 10: - num = 2; - num2 = 1; - goto IL_94; - case 11: - num = 2; - num2 = 2; - goto IL_94; - case 12: - num = 3; - num2 = 2; - goto IL_94; - case 13: - num = 1; - num2 = 2; - goto IL_94; - } - - num = 1; - num2 = 1; - IL_94: - return new Rectangle((int)this.TileLocation.X * Game1.tileSize, (int)this.TileLocation.Y * Game1.tileSize, num * Game1.tileSize, num2 * Game1.tileSize); - } - - private int getTypeNumberFromName(string typeName) - { - string key; - switch (key = typeName.ToLower()) - { - case "chair": - return 0; - case "bench": - return 1; - case "couch": - return 2; - case "armchair": - return 3; - case "dresser": - return 4; - case "long table": - return 5; - case "painting": - return 6; - case "lamp": - return 7; - case "decor": - return 8; - case "bookcase": - return 10; - case "table": - return 11; - case "rug": - return 12; - case "window": - return 13; - } - return 9; - } - - public override int salePrice() - { - return this.Price; - } - - public override int maximumStackSize() - { - return 999; - } - - public override int getStack() - { - return this.Stack; - } - - - private float getScaleSize() - { - int num = this.sourceRect.Width / 16; - int num2 = this.sourceRect.Height / 16; - if (num >= 5) - { - return 0.75f; - } - if (num2 >= 3) - { - return 1f; - } - if (num <= 2) - { - return 2f; - } - if (num <= 4) - { - return 1f; - } - return 0.1f; - } - - public override void drawWhenHeld(SpriteBatch spriteBatch, Vector2 objectPosition, StardewValley.Farmer f) - { - if (f.ActiveObject.bigCraftable.Value) - { - spriteBatch.Draw(Game1.bigCraftableSpriteSheet, objectPosition, new Microsoft.Xna.Framework.Rectangle?(StardewValley.Object.getSourceRectForBigCraftable(f.ActiveObject.ParentSheetIndex)), Color.White, 0f, Vector2.Zero, (float)Game1.pixelZoom, SpriteEffects.None, Math.Max(0f, (float)(f.getStandingY() + 2) / 10000f)); - return; - } - - spriteBatch.Draw(Game1.objectSpriteSheet, objectPosition, new Microsoft.Xna.Framework.Rectangle?(GameLocation.getSourceRectForObject(f.ActiveObject.ParentSheetIndex)), Color.White, 0f, Vector2.Zero, (float)Game1.pixelZoom, SpriteEffects.None, Math.Max(0f, (float)(f.getStandingY() + 2) / 10000f)); - if (f.ActiveObject != null && f.ActiveObject.Name.Contains("=")) - { - spriteBatch.Draw(Game1.objectSpriteSheet, objectPosition + new Vector2((float)(Game1.tileSize / 2), (float)(Game1.tileSize / 2)), new Microsoft.Xna.Framework.Rectangle?(GameLocation.getSourceRectForObject(f.ActiveObject.ParentSheetIndex)), Color.White, 0f, new Vector2((float)(Game1.tileSize / 2), (float)(Game1.tileSize / 2)), (float)Game1.pixelZoom + Math.Abs(Game1.starCropShimmerPause) / 8f, SpriteEffects.None, Math.Max(0f, (float)(f.getStandingY() + 2) / 10000f)); - if (Math.Abs(Game1.starCropShimmerPause) <= 0.05f && Game1.random.NextDouble() < 0.97) - { - return; - } - Game1.starCropShimmerPause += 0.04f; - if (Game1.starCropShimmerPause >= 0.8f) - { - Game1.starCropShimmerPause = -0.8f; - } - } - //base.drawWhenHeld(spriteBatch, objectPosition, f); - } - - /// - /// Draws the item's icon in the menu. - /// - /// - /// - /// - /// - /// - /// - /// - /// - public override void drawInMenu(SpriteBatch spriteBatch, Vector2 location, float scaleSize, float transparency, float layerDepth, bool drawStackNumber, Color c, bool drawShadow) - { - if (drawStackNumber && this.maximumStackSize() > 1 && ((double)scaleSize > 0.3 && this.Stack != int.MaxValue) && this.Stack > 1) - Utility.drawTinyDigits(this.Stack, spriteBatch, location + new Vector2((float)(Game1.tileSize - Utility.getWidthOfTinyDigitString(this.Stack, 3f * scaleSize)) + 3f * scaleSize, (float)((double)Game1.tileSize - 18.0 * (double)scaleSize + 2.0)), 3f * scaleSize, 1f, Color.White); - if (drawStackNumber && this.Quality > 0) - { - float num = this.Quality < 4 ? 0.0f : (float)((Math.Cos((double)Game1.currentGameTime.TotalGameTime.Milliseconds * Math.PI / 512.0) + 1.0) * 0.0500000007450581); - spriteBatch.Draw(Game1.mouseCursors, location + new Vector2(12f, (float)(Game1.tileSize - 12) + num), new Microsoft.Xna.Framework.Rectangle?(this.Quality < 4 ? new Microsoft.Xna.Framework.Rectangle(338 + (this.Quality - 1) * 8, 400, 8, 8) : new Microsoft.Xna.Framework.Rectangle(346, 392, 8, 8)), Color.White * transparency, 0.0f, new Vector2(4f, 4f), (float)(3.0 * (double)scaleSize * (1.0 + (double)num)), SpriteEffects.None, layerDepth); - } - spriteBatch.Draw(TextureSheet.getTexture(), location + new Vector2((float)(Game1.tileSize), (float)(Game1.tileSize)), new Rectangle?(this.defaultSourceRect), Color.White * transparency, 0f, new Vector2((float)(this.defaultSourceRect.Width / 2), (float)(this.defaultSourceRect.Height)), 1f * this.getScaleSize() * scaleSize * .5f, SpriteEffects.None, layerDepth); - } - - /// - /// Draws the object to the screen. - /// - /// - /// - /// - /// - public override void draw(SpriteBatch spriteBatch, int x, int y, float alpha = 1f) - { - if (TextureSheet == null) - { - ModCore.ModMonitor.Log("WTF? Why is texture sheet null???"); - } - if (x == -1) - { - spriteBatch.Draw(TextureSheet.getTexture(), Game1.GlobalToLocal(Game1.viewport, this.drawPosition), new Rectangle?(this.sourceRect), Color.White * alpha, 0f, Vector2.Zero, (float)Game1.pixelZoom, this.flipped ? SpriteEffects.FlipHorizontally : SpriteEffects.None, 0f); - } - else - { - spriteBatch.Draw(TextureSheet.getTexture(), Game1.GlobalToLocal(Game1.viewport, new Vector2((float)(x * Game1.tileSize), (float)(y * Game1.tileSize))), new Rectangle?(this.sourceRect), Color.White * alpha, 0f, Vector2.Zero, (float)Game1.pixelZoom, this.flipped ? SpriteEffects.FlipHorizontally : SpriteEffects.None, 0f); - } - if (this.heldObject.Value != null) - { - if (this.heldObject.Value is CoreObject) - { - (this.heldObject.Value as CoreObject).drawAtNonTileSpot(spriteBatch, Game1.GlobalToLocal(Game1.viewport, new Vector2((float)(this.boundingBox.Center.X - Game1.tileSize / 2), (float)(this.boundingBox.Center.Y - (this.heldObject.Value as CoreObject).sourceRect.Height * Game1.pixelZoom - Game1.tileSize / 4))), (float)(this.boundingBox.Bottom - 7) / 10000f, alpha); - return; - } - spriteBatch.Draw(Game1.shadowTexture, Game1.GlobalToLocal(Game1.viewport, new Vector2((float)(this.boundingBox.Center.X - Game1.tileSize / 2), (float)(this.boundingBox.Center.Y - Game1.tileSize * 4 / 3))) + new Vector2((float)(Game1.tileSize / 2), (float)(Game1.tileSize * 5 / 6)), new Rectangle?(Game1.shadowTexture.Bounds), Color.White * alpha, 0f, new Vector2((float)Game1.shadowTexture.Bounds.Center.X, (float)Game1.shadowTexture.Bounds.Center.Y), 4f, SpriteEffects.None, (float)this.boundingBox.Bottom / 10000f); - spriteBatch.Draw(Game1.objectSpriteSheet, Game1.GlobalToLocal(Game1.viewport, new Vector2((float)(this.boundingBox.Center.X - Game1.tileSize / 2), (float)(this.boundingBox.Center.Y - Game1.tileSize * 4 / 3))), new Rectangle?(GameLocation.getSourceRectForObject(this.heldObject.Value.ParentSheetIndex)), Color.White * alpha, 0f, Vector2.Zero, (float)Game1.pixelZoom, SpriteEffects.None, (float)(this.boundingBox.Bottom + 1) / 10000f); - } - } - - public override void draw(SpriteBatch spriteBatch, int xNonTile, int yNonTile, float layerDepth, float alpha = 1) - { - this.draw(spriteBatch, xNonTile, yNonTile, alpha); - } - - - - public virtual void drawAtNonTileSpot(SpriteBatch spriteBatch, Vector2 location, float layerDepth, float alpha = 1f) - { - spriteBatch.Draw(TextureSheet.getTexture(), location, new Rectangle?(this.sourceRect), Color.White * alpha, 0f, Vector2.Zero, (float)Game1.pixelZoom, this.flipped ? SpriteEffects.FlipHorizontally : SpriteEffects.None, layerDepth); - } - - public override Item getOne() - { - CoreObject CoreObject = new CoreObject(this.TextureSheet,this.ParentSheetIndex, this.TileLocation, this.inventoryMaxSize); - - CoreObject.drawPosition = this.drawPosition; - CoreObject.defaultBoundingBox = this.defaultBoundingBox; - CoreObject.boundingBox.Value = this.boundingBox.Value; - CoreObject.currentRotation = this.currentRotation - 1; - CoreObject.rotations = this.rotations; - //rotate(); - - return CoreObject; - } - - - /// - /// Used in vertain cases where the mod needs to get an object relative to a content pack's directory. - /// - /// - /// - public virtual Item getOne(IModHelper helper) - { - Texture2DExtended texture = new Texture2DExtended(helper, this.TextureSheet.modID,this.TextureSheet.path); - CoreObject CoreObject = new CoreObject(texture,this.ParentSheetIndex, this.TileLocation, this.inventoryMaxSize); - - CoreObject.drawPosition = this.drawPosition; - CoreObject.defaultBoundingBox = this.defaultBoundingBox; - CoreObject.boundingBox.Value = this.boundingBox.Value; - CoreObject.currentRotation = this.currentRotation - 1; - CoreObject.rotations = this.rotations; - //rotate(); - - return CoreObject; - } - - public virtual bool isInventoryFull() - { - // Log.AsyncC("Count" + inventory.Count); - // Log.AsyncC("size" + inventoryMaxSize); - if (inventory.Count >= inventoryMaxSize) - { - - return true; - } - else - { - return false; - } - - } - - public virtual bool addItemToInventory(Item I) - { - if (isInventoryFull() == false) - { - inventory.Add(I.getOne()); - return true; - } - else return false; - } - - public virtual void getInventoryMenu() - { - Game1.activeClickableMenu = new StorageContainer(this.inventory, 3, 3); - this.itemReadyForHarvest = false; - /* - - */ - } - - public virtual void spillInventoryEverywhere() - { - - Random random = new Random(inventory.Count); - int i = random.Next(); - i = i % 4; - Vector2 v2 = new Vector2(this.TileLocation.X * Game1.tileSize, this.TileLocation.Y * Game1.tileSize); - foreach (var I in inventory) - { - Game1.createItemDebris(I, v2, i); - } - inventory.Clear(); - } - - /// - /// Adds an item to this item's internal inventory if it can. Otherwise drop it on the ground as item debris. - /// - /// - /// - public virtual bool addItemToInventoryElseDrop(Item I) - { - - if (isInventoryFull() == false) - { - foreach (Item C in inventory) - { - if (C == null) continue; - if (I.canStackWith(C) == true) - { - C.addToStack(I.Stack); - return true; - } - else - { - inventory.Add(I.getOne()); - return true; - } - } - inventory.Add(I.getOne()); - return true; - } - else - { - Random random = new Random(inventory.Count); - int i = random.Next(); - i = i % 4; - Vector2 v2 = new Vector2(this.TileLocation.X * Game1.tileSize, this.TileLocation.Y * Game1.tileSize); - Game1.createItemDebris(I.getOne(), v2, i); - return false; - } - } - - public virtual void toggleLights() - { - - if (lightsOn == false) - { - - // Log.AsyncG("ADD LIGHTS"); - this.Decoration_type = 7; - this.Type = "Lamp"; - - // this.lightSource.lightTexture = Game1.content.Load("LooseSprites\\Lighting\\Lantern"); - // this.lightSource.position = tileLocation; - - // this.addLights(thisLocation, lightColor); - this.addLights(thisLocation, lightColor); - lightsOn = true; - } - if (lightsOn == true) - { - this.removeLights(Game1.player.currentLocation); - lightsOn = false; - } - - } - - public virtual void resetTexture(IModHelper helper) - { - TextureSheet = new Texture2DExtended(helper, this.TextureSheet.modID,TextureSheet.path); - } - - public virtual void resetTexture() - { - TextureSheet = new Texture2DExtended(TextureSheet.getHelper(),TextureSheet.modID, TextureSheet.path); - } - - public override string getCategoryName() - { - return "Core Mod Object"; - // return base.getCategoryName(); - } - - public override Color getCategoryColor() - { - return Color.Black; - } - - public virtual Type getCustomType() - { - return this.GetType(); - } - - public virtual string GetSerializationName() - { - return this.GetType().ToString(); - } - - - public virtual Texture2DExtended getExtendedTexture() - { - return this.TextureSheet; - } - - public virtual void setExtendedTexture(Texture2DExtended texture) - { - this.TextureSheet = texture; - } - - - /// - /// Serializes the said item properly. - /// - /// - public static void Serialize(Item I) - { - - if((I as CoreObject).thisLocation != null) - { - SerializeToWorldPath(I); - return; - } - - String savePath = ModCore.SerializationManager.playerInventoryPath; - String fileName = I.Name + ".json"; - String resultPath = Path.Combine(savePath, fileName); - int count = 0; - while (File.Exists(resultPath)) - { - resultPath = Serialization.SerializationManager.getValidSavePathIfDuplicatesExist(I, savePath, count); - count++; - } - JsonSerializerSettings settings = new JsonSerializerSettings(); - settings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore; - (I as CoreObject).textureName = (I as CoreObject).TextureSheet.Name; - string json = JsonConvert.SerializeObject(I, Formatting.Indented,settings); - System.IO.File.WriteAllText(resultPath, json); - //StardustCore.ModCore.ModHelper.WriteJsonFile(resultPath, (CoreObject)I); - } - - public static void SerializeToWorldPath(Item I) - { - String savePath = ModCore.SerializationManager.objectsInWorldPath; - String fileName = I.Name + ".json"; - String resultPath = Path.Combine(savePath, fileName); - int count = 0; - while (File.Exists(resultPath)) - { - resultPath = Serialization.SerializationManager.getValidSavePathIfDuplicatesExist(I, savePath, count); - count++; - } - JsonSerializerSettings settings = new JsonSerializerSettings(); - settings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore; - (I as CoreObject).textureName = (I as CoreObject).TextureSheet.Name; - string json = JsonConvert.SerializeObject(I, Formatting.Indented, settings); - System.IO.File.WriteAllText(resultPath, json); - } - - - - /// - /// Serializes the said item to a chest. - /// - /// - /// - public static void SerializeToContainer(Item I, string s) - { - String savePath = s; - String fileName = I.Name + ".json"; - String resultPath = Path.Combine(savePath, fileName); - int count = 0; - while (File.Exists(resultPath)) - { - resultPath = Serialization.SerializationManager.getValidSavePathIfDuplicatesExist(I, savePath, count); - count++; - } - JsonSerializerSettings settings = new JsonSerializerSettings(); - settings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore; - (I as CoreObject).textureName = (I as CoreObject).TextureSheet.Name; - string json = JsonConvert.SerializeObject(I, Formatting.Indented, settings); - System.IO.File.WriteAllText(resultPath, json); - //StardustCore.ModCore.ModHelper.WriteJsonFile(resultPath, (CoreObject)I); - } - - /// - /// Deserializes the object from a .json. - /// - /// - /// - public static CoreObject Deserialize(string data) - { - CoreObject obj = ModCore.ModHelper.ReadJsonFile(data); - obj.TextureSheet = ModCore.TextureManager.getTexture(obj.textureName); - return obj; - } - - public override void updateWhenCurrentLocation(GameTime time, GameLocation environment) - { - //Do nothing. - this.updateDrawPosition(); - } - } -} - diff --git a/GeneralMods/StardustCore/Objects/MultiTileComponent.cs b/GeneralMods/StardustCore/Objects/MultiTileComponent.cs deleted file mode 100644 index dfe76e57..00000000 --- a/GeneralMods/StardustCore/Objects/MultiTileComponent.cs +++ /dev/null @@ -1,244 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Microsoft.Xna.Framework; -using Microsoft.Xna.Framework.Graphics; -using StardewValley; -using StardustCore.UIUtilities; - -namespace StardustCore.Objects -{ - public class MultiTileComponent : CoreObject - { - //Pass in different function pointers that return bool to check if this default code will run. If not - public MultiTileObject containerObject; - - public MultiTileComponent() - { - //this.TextureSheet = new Texture2DExtended(); - this.NetFields.AddField(new NetCode.NetTexture2DExtended(this.getExtendedTexture())); - } - - public MultiTileComponent(CoreObject part) - { - this.name = part.name; - this.description = part.description; - this.TextureSheet = part.getExtendedTexture(); - if (part.animationManager != null) - { - this.animationManager = part.animationManager; - } - this.defaultBoundingBox = new Rectangle(0, 0, 16, 16); - this.boundingBox.Value = new Rectangle((int)0 * Game1.tileSize, (int)0* Game1.tileSize, 1 * Game1.tileSize, 1 * Game1.tileSize); - - - this.NetFields.AddField(new NetCode.NetTexture2DExtended(this.getExtendedTexture())); - - this.InitializeBasics(0, Vector2.Zero); - } - - public MultiTileComponent(int which,String name, String description, Texture2DExtended texture) - { - this.name = name; - this.displayName = name; - this.description = description; - this.TextureSheet = texture; - this.defaultBoundingBox = new Rectangle(0, 0, 16, 16); - this.boundingBox.Value = new Rectangle((int)0 * Game1.tileSize, (int)0 * Game1.tileSize, 1 * Game1.tileSize, 1 * Game1.tileSize); - this.defaultSourceRect.Width = 16; - this.defaultSourceRect.Height = 16; - this.sourceRect = new Rectangle((which * 16) % TextureSheet.getTexture().Width, (which * 16) / TextureSheet.getTexture().Width * 16, this.defaultSourceRect.Width * 1, this.defaultSourceRect.Height * 1); - this.defaultSourceRect = this.sourceRect; - this.serializationName = this.GetType().ToString(); - this.ParentSheetIndex = which; - - this.animationManager = new Animations.AnimationManager(texture, new Animations.Animation(this.defaultSourceRect), false); - - this.NetFields.AddField(new NetCode.NetTexture2DExtended(this.getExtendedTexture())); - - this.InitializeBasics(0, Vector2.Zero); - } - - public MultiTileComponent(int which,String name, String description, Animations.AnimationManager animationManager) - { - this.name = name; - this.displayName = name; - this.description = description; - this.animationManager = animationManager; - this.TextureSheet = animationManager.getExtendedTexture(); - this.defaultBoundingBox = new Rectangle(0, 0, 16, 16); - this.boundingBox.Value = new Rectangle((int)0 * Game1.tileSize, (int)0 * Game1.tileSize, 1 * Game1.tileSize, 1 * Game1.tileSize); - this.defaultSourceRect.Width = 16; - this.defaultSourceRect.Height = 16; - this.sourceRect = new Rectangle(which * 16 % TextureSheet.getTexture().Width, which * 16 / TextureSheet.getTexture().Width * 16, this.defaultSourceRect.Width * 16, this.defaultSourceRect.Height * 16); - this.defaultSourceRect = this.sourceRect; - this.serializationName = this.GetType().ToString(); - this.ParentSheetIndex = which; - - this.NetFields.AddField(new NetCode.NetTexture2DExtended(this.getExtendedTexture())); - - this.InitializeBasics(0,Vector2.Zero); - } - - public override void InitializeBasics(int InvMaxSize, Vector2 tile) - { - this.inventory = new List(); - this.inventoryMaxSize = InvMaxSize; - this.TileLocation = tile; - lightsOn = false; - - lightColor = Color.Black; - - base.initNetFields(); - this.NetFields.AddField(new NetCode.Objects.NetMultiTileComponent(this)); - } - - public override bool clicked(Farmer who) - { - //Check if shift click to interact with object. - containerObject.RemoveAllObjects(); - return true; - } - - public override Item getOne() - { - if (this.animationManager != null) - { - var obj = new MultiTileComponent(this.ParentSheetIndex,this.name, this.description, this.animationManager); - obj.containerObject = this.containerObject; - return obj; - } - else - { - var obj = new MultiTileComponent(this.ParentSheetIndex,this.name, this.description, this.TextureSheet); - obj.containerObject = this.containerObject; - return obj; - } - } - - public override bool RightClicked(Farmer who) - { - return true; - } - - public override bool placementAction(GameLocation location, int x, int y, Farmer who = null) - { - Point point = new Point(x / Game1.tileSize, y / Game1.tileSize); - this.position = new Vector2(point.X, point.Y); - this.TileLocation = new Vector2((float)point.X, (float)point.Y); - this.boundingBox.Value = new Rectangle((int)TileLocation.X * Game1.tileSize, (int)TileLocation.Y * Game1.tileSize, 1 * Game1.tileSize, 1 * Game1.tileSize); - - foreach(Farmer farmer in Game1.getAllFarmers()) - { - if (location == farmer.currentLocation) - { - if (farmer.GetBoundingBox().Intersects(this.boundingBox.Value)) - { - Game1.showRedMessage("Can't place on top of a person."); - bool result = false; - return result; - } - } - } - - - this.updateDrawPosition(); - - bool f = Utilities.placementAction(this, location, x, y,StardustCore.ModCore.SerializationManager ,who); - this.thisLocation = Game1.player.currentLocation; - return f; - // Game1.showRedMessage("Can only be placed in House"); - // return false; - } - - public override void performRemoveAction(Vector2 tileLocation, GameLocation environment) - { - // Game1.showRedMessage("Why3?"); - try - { - this.heldObject.Value.performRemoveAction(this.TileLocation, this.thisLocation); - this.heldObject.Value = null; - } - catch(Exception err) - { - - } - StardustCore.ModCore.SerializationManager.trackedObjectList.Remove(this); - this.thisLocation.removeObject(this.tileLocation, false); - //this.thisLocation.objects.Remove(this.TileLocation); - this.thisLocation = null; - this.locationsName = ""; - base.performRemoveAction(tileLocation, environment); - } - - public override void draw(SpriteBatch spriteBatch, int x, int y, float alpha = 1f) - { - if (x == -1) - { - spriteBatch.Draw(this.TextureSheet.getTexture(), Game1.GlobalToLocal(Game1.viewport, this.drawPosition), new Rectangle?(this.sourceRect), Color.White * alpha, 0f, Vector2.Zero, (float)Game1.pixelZoom, this.flipped ? SpriteEffects.FlipHorizontally : SpriteEffects.None, (this.Decoration_type == 12) ? 0f : ((float)(this.boundingBox.Bottom - 8) / 10000f)); - } - else - { - //The actual planter box being drawn. - if (animationManager == null) - { - if (this.TextureSheet == null) - { - ModCore.ModMonitor.Log("Tex Extended is null???"); - - } - - spriteBatch.Draw(this.TextureSheet.getTexture(), Game1.GlobalToLocal(Game1.viewport, new Vector2((float)(x * Game1.tileSize), y * Game1.tileSize)), new Rectangle?(this.sourceRect), Color.White * alpha, 0f, Vector2.Zero, (float)Game1.pixelZoom, this.flipped ? SpriteEffects.FlipHorizontally : SpriteEffects.None, 0); - // Log.AsyncG("ANIMATION IS NULL?!?!?!?!"); - } - - else - { - //Log.AsyncC("Animation Manager is working!"); - this.animationManager.draw(spriteBatch, this.animationManager.getTexture(), Game1.GlobalToLocal(Game1.viewport, new Vector2((float)(x * Game1.tileSize), y * Game1.tileSize)), new Rectangle?(this.animationManager.currentAnimation.sourceRectangle), Color.White * alpha, 0f, Vector2.Zero, (float)Game1.pixelZoom, this.flipped ? SpriteEffects.FlipHorizontally : SpriteEffects.None, 0); - try - { - this.animationManager.tickAnimation(); - // Log.AsyncC("Tick animation"); - } - catch (Exception err) - { - ModCore.ModMonitor.Log(err.ToString()); - } - } - - // spriteBatch.Draw(Game1.mouseCursors, Game1.GlobalToLocal(Game1.viewport, new Vector2((float)((double)tileLocation.X * (double)Game1.tileSize + (((double)tileLocation.X * 11.0 + (double)tileLocation.Y * 7.0) % 10.0 - 5.0)) + (float)(Game1.tileSize / 2), (float)((double)tileLocation.Y * (double)Game1.tileSize + (((double)tileLocation.Y * 11.0 + (double)tileLocation.X * 7.0) % 10.0 - 5.0)) + (float)(Game1.tileSize / 2))), new Rectangle?(new Rectangle((int)((double)tileLocation.X * 51.0 + (double)tileLocation.Y * 77.0) % 3 * 16, 128 + this.whichForageCrop * 16, 16, 16)), Color.White, 0.0f, new Vector2(8f, 8f), (float)Game1.pixelZoom, SpriteEffects.None, (float)(((double)tileLocation.Y * (double)Game1.tileSize + (double)(Game1.tileSize / 2) + (((double)tileLocation.Y * 11.0 + (double)tileLocation.X * 7.0) % 10.0 - 5.0)) / 10000.0)); - - - - } - } - - public override void draw(SpriteBatch spriteBatch, int xNonTile, int yNonTile, float layerDepth, float alpha = 1f) - { - - if (Game1.eventUp && Game1.CurrentEvent.isTileWalkedOn(xNonTile / 64, yNonTile / 64)) - return; - if ((int)(this.ParentSheetIndex) != 590 && (int)(this.Fragility) != 2) - spriteBatch.Draw(Game1.shadowTexture, Game1.GlobalToLocal(Game1.viewport, new Vector2((float)(xNonTile + 32), (float)(yNonTile + 51 + 4))), new Microsoft.Xna.Framework.Rectangle?(Game1.shadowTexture.Bounds), Color.White * alpha, 0.0f, new Vector2((float)Game1.shadowTexture.Bounds.Center.X, (float)Game1.shadowTexture.Bounds.Center.Y), 4f, SpriteEffects.None, layerDepth - 1E-06f); - SpriteBatch spriteBatch1 = spriteBatch; - Texture2D objectSpriteSheet = Game1.objectSpriteSheet; - Vector2 local = Game1.GlobalToLocal(Game1.viewport, new Vector2((float)(xNonTile + 32 + (this.shakeTimer > 0 ? Game1.random.Next(-1, 2) : 0)), (float)(yNonTile + 32 + (this.shakeTimer > 0 ? Game1.random.Next(-1, 2) : 0)))); - Microsoft.Xna.Framework.Rectangle? sourceRectangle = new Microsoft.Xna.Framework.Rectangle?(GameLocation.getSourceRectForObject(this.ParentSheetIndex)); - Color color = Color.White * alpha; - double num1 = 0.0; - Vector2 origin = new Vector2(8f, 8f); - Vector2 scale = this.scale; - double num2 = (double)this.scale.Y > 1.0 ? (double)this.getScale().Y : 4.0; - int num3 = (bool)(this.flipped) ? 1 : 0; - double num4 = (double)layerDepth; - spriteBatch1.Draw(TextureSheet.getTexture(), local, sourceRectangle, color, (float)num1, origin, (float)num2, (SpriteEffects)num3, (float)num4); - - } - - - - } -} diff --git a/GeneralMods/StardustCore/Objects/MultiTileObject.cs b/GeneralMods/StardustCore/Objects/MultiTileObject.cs deleted file mode 100644 index 045b8413..00000000 --- a/GeneralMods/StardustCore/Objects/MultiTileObject.cs +++ /dev/null @@ -1,247 +0,0 @@ -using Microsoft.Xna.Framework; -using Microsoft.Xna.Framework.Graphics; -using StardewValley; -using StardustCore.UIUtilities; -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Runtime.Serialization.Formatters.Binary; -using System.Text; -using System.Threading.Tasks; - -namespace StardustCore.Objects -{ - public class MultiTileObject : CoreObject - { - public List> objects; - public Color categoryColor; - public String categoryName; - - public MultiTileObject() - { - - } - - public MultiTileObject(String Name, String Description,Vector2 tile, Texture2DExtended texture, List> Objects, Color CategoryColor, String CategoryName) :base(texture,0,tile,0) - { - this.objects = Objects; - this.TextureSheet = texture; - this.categoryColor = CategoryColor; - this.categoryName = CategoryName; - this.name = Name; - this.displayName = Name; - this.description = Description; - this.animationManager = new Animations.AnimationManager(this.TextureSheet, new Animations.Animation(), false); - foreach(var v in this.objects) - { - v.Value.containerObject = this; - } - - InitializeBasics(0, tile); - this.serializationName = this.GetType().ToString(); - - this.defaultSourceRect = new Rectangle(0, 0, 16, 16); - this.sourceRect = defaultSourceRect; - } - - public MultiTileObject(String Name, String Description, Vector2 tile, Animations.AnimationManager animationManager, List> Objects, Color CategoryColor, String CategoryName) - { - this.animationManager = animationManager; - this.objects = Objects; - this.TextureSheet =animationManager.getExtendedTexture(); - this.name = Name; - this.displayName = Name; - this.description = Description; - InitializeBasics(0, tile); - this.serializationName = this.GetType().ToString(); - } - - public void RemoveAllObjects() - { - if (Game1.player.isInventoryFull() == false){ - foreach (var v in this.objects) - { - v.Value.performRemoveAction(v.Value.TileLocation, v.Value.thisLocation); - } - Game1.player.addItemToInventory(this); - } - return; - } - - public override Type getCustomType() - { - return this.GetType(); - } - - public override string GetSerializationName() - { - return typeof(MultiTileObject).ToString(); - } - - public override void InitializeBasics(int InvMaxSize, Vector2 tile) - { - this.inventory = new List(); - this.inventoryMaxSize = InvMaxSize; - this.TileLocation = tile; - lightsOn = false; - - lightColor = Color.Black; - - base.initNetFields(); - this.NetFields.AddField(new NetCode.Objects.NetMultiTileObject(this)); - } - public override bool placementAction(GameLocation location, int x, int y, Farmer who = null) - { - if (canBePlacedHere(location,new Vector2(x/Game1.tileSize,y/Game1.tileSize))) - { - foreach (var pair in this.objects) - { - - pair.Value.placementAction(location, x + (int)(pair.Key.X * Game1.tileSize), y + (int)(pair.Key.Y * Game1.tileSize), who); - } - return true; - } - return false; - } - - public override bool canBePlacedHere(GameLocation l, Vector2 tile) - { - bool canBePlaced = true; - foreach (var v in this.objects) - { - canBePlaced=v.Value.canBePlacedHere(l, tile+v.Key); - if (canBePlaced == false) return false; - } - return true; - } - - public override bool clicked(Farmer who) - { - foreach (var pair in this.objects) - { - pair.Value.clicked(who); - } - return true; - } - - public override bool RightClicked(Farmer who) - { - foreach (var pair in this.objects) - { - pair.Value.RightClicked(who); - } - return true; - } - - /// - /// Need to fix this for sure!!! - /// - /// - public override Item getOne() - { - List> items = new List>(); - foreach (var pair in this.objects) - { - items.Add(new KeyValuePair(pair.Key, (pair.Value.getOne()) as MultiTileComponent)); - } - if (this.animationManager != null) - { - return new MultiTileObject(this.name, this.description, this.TileLocation, this.animationManager, items, this.categoryColor, this.categoryName); - //throw new NotImplementedException(); - } - else - { - return new MultiTileObject(this.name, this.description, this.TileLocation, this.TextureSheet, items, this.categoryColor, this.categoryName); - } - return null; - } - - public override void draw(SpriteBatch spriteBatch, int x, int y, float alpha = 1) - { - - foreach(var v in this.objects) - { - v.Value.draw(spriteBatch, (int)x+(int)(v.Key.X), (int)y+(int)(v.Key.Y), alpha); - } - - //base.draw(spriteBatch, x, y, alpha); - } - - public override void draw(SpriteBatch spriteBatch, int xNonTile, int yNonTile, float layerDepth, float alpha = 1) - { - foreach (var v in this.objects) - { - v.Value.draw(spriteBatch, (int)xNonTile+(int)(v.Key.X*Game1.tileSize), (int)yNonTile+ (int)(v.Key.Y * Game1.tileSize), layerDepth, alpha); - } - } - - public override void drawWhenHeld(SpriteBatch spriteBatch, Vector2 objectPosition, StardewValley.Farmer f) - { - if (animationManager == null) - { - if (this.objects == null) return; - if (this.sourceRect == null) throw new Exception("Source rect null???"); - foreach (var v in this.objects) - { - - if (v.Value.getExtendedTexture() == null) throw new Exception("Extended texture is null!"); - if (v.Value.getExtendedTexture().getTexture() == null) throw new Exception("Texture is null!"); - spriteBatch.Draw(v.Value.getExtendedTexture().getTexture(), objectPosition + new Vector2(v.Key.X * Game1.tileSize, v.Key.Y * Game1.tileSize), this.sourceRect, Color.White, 0f, Vector2.Zero, (float)Game1.pixelZoom, SpriteEffects.None, Math.Max(0f, (float)(f.getStandingY() + 2) / 10000f)); - } - } - else - { - - foreach (var v in this.objects) - { - if(v.Value.getExtendedTexture() == null) throw new Exception("Extended texture is null!"); - if (v.Value.getExtendedTexture().getTexture() == null) throw new Exception("Texture is null!"); - spriteBatch.Draw(v.Value.animationManager.getTexture(), objectPosition + new Vector2(v.Key.X * Game1.tileSize, v.Key.Y * Game1.tileSize), this.sourceRect, Color.White, 0f, Vector2.Zero, (float)Game1.pixelZoom, SpriteEffects.None, Math.Max(0f, (float)(f.getStandingY() + 2) / 10000f)); - } - } - - //base.drawWhenHeld(spriteBatch, objectPosition, f); - } - - public override void drawAtNonTileSpot(SpriteBatch spriteBatch, Vector2 location, float layerDepth, float alpha = 1) - { - foreach (var v in this.objects) - { - v.Value.drawAtNonTileSpot(spriteBatch, location+new Vector2(v.Key.X * Game1.tileSize, v.Key.Y * Game1.tileSize), layerDepth, alpha); - } - } - - public override void drawInMenu(SpriteBatch spriteBatch, Vector2 location, float scaleSize, float transparency, float layerDepth, bool drawStackNumber, Color c, bool drawShadows) - { - foreach (var v in this.objects) - { - if (animationManager == null) - { - //FIX SCALE SIZE AND POSITION APPROPRIATELY DEPENDING ON # OF OBJECTS!!! - //fsfsd - spriteBatch.Draw(v.Value.getExtendedTexture().getTexture(), location+new Vector2(v.Key.X*16,v.Key.Y*16), this.defaultSourceRect, Color.White * transparency, 0f, new Vector2(0, 0), 1, SpriteEffects.None, layerDepth); - } - else - { - spriteBatch.Draw(v.Value.animationManager.getTexture(), location + new Vector2(v.Key.X*8, v.Key.Y*8), v.Value.animationManager.currentAnimation.sourceRectangle, Color.White * transparency, 0f, new Vector2(0, 0), scaleSize, SpriteEffects.None, layerDepth); - //this.modularCrop.drawInMenu(spriteBatch, location + new Vector2((float)(Game1.tileSize / 2), (float)(Game1.tileSize / 2)), Color.White, 0f,true); - if (Game1.player.CurrentItem != this) animationManager.tickAnimation(); - } - } - } - - - public override Color getCategoryColor() - { - return this.categoryColor; - } - - public override string getCategoryName() - { - return this.name; - } - - - } -} diff --git a/GeneralMods/StardustCore/Objects/Tools/BasicToolInfo.cs b/GeneralMods/StardustCore/Objects/Tools/BasicToolInfo.cs deleted file mode 100644 index eb2866be..00000000 --- a/GeneralMods/StardustCore/Objects/Tools/BasicToolInfo.cs +++ /dev/null @@ -1,40 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace StardustCore.Objects.Tools -{ - public class BasicToolInfo - { - /// - /// The name of the tool. - /// - public string name; - - /// - /// The upgrade level of the tool. - /// - public int level; - - /// - /// The description of the tool. - /// - public string description; - - /// - /// Constructor used to hold generic info shared across all tools. - /// - /// - /// - /// - public BasicToolInfo(String Name, int Level, string Description) - { - this.name = Name; - this.level = Level; - this.description = Description; - } - - } -} diff --git a/GeneralMods/StardustCore/Objects/Tools/ExtendedAxe.cs b/GeneralMods/StardustCore/Objects/Tools/ExtendedAxe.cs deleted file mode 100644 index 95b6f9fd..00000000 --- a/GeneralMods/StardustCore/Objects/Tools/ExtendedAxe.cs +++ /dev/null @@ -1,142 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Microsoft.Xna.Framework; -using Microsoft.Xna.Framework.Graphics; -using StardewModdingAPI; -using StardewValley; -using StardustCore.Interfaces; -using StardustCore.Objects.Tools.SerializationInformation; -using StardustCore.UIUtilities; - -namespace StardustCore.Objects.Tools -{ - public class ExtendedAxe : StardewValley.Tools.Axe, IItemSerializeable, IToolSerializer - { - public Texture2DExtended texture; - - public override string DisplayName { get => this.displayName; set => this.displayName = value; } - public override string Name { get => this.displayName; set => this.displayName = value; } - - /// - /// Generates a default axe. Doens't really do much. - /// - public ExtendedAxe() : base() - { - this.texture = new Texture2DExtended(StardustCore.ModCore.ModHelper, ModCore.Manifest,Path.Combine("Content","Graphics","Tools","CustomAxe.png")); - } - - public ExtendedAxe(BasicToolInfo info, Texture2DExtended texture) - { - this.texture = texture; - this.displayName = info.name; - this.description = info.description; - this.UpgradeLevel = info.level; - } - - public ExtendedAxe(SerializedObjectBase dataBase) : base() - { - StardustCore.ModCore.ModMonitor.Log("WTF EVEN " + dataBase.GetType().ToString()); - StardustCore.ModCore.ModMonitor.Log((dataBase as Serialization_ExtendedAxe).Name); - this.displayName = "Hello"; - this.description = (dataBase as Serialization_ExtendedAxe).Description; - this.texture = StardustCore.ModCore.TextureManager.getTexture((dataBase as Serialization_ExtendedAxe).TextureInformation.Name); //new Texture2DExtended(StardustCore.ModCore.ModHelper, Path.Combine("Content", "Graphics", "Tools", "CustomAxe.png")); - this.UpgradeLevel = (dataBase as Serialization_ExtendedAxe).UpgradeLevel; - } - - public override void draw(SpriteBatch b) - { - base.draw(b); - } - - public override void drawInMenu(SpriteBatch spriteBatch, Vector2 location, float scaleSize, float transparency, float layerDepth, bool drawStackNumber, Color color, bool drawShadow) - { - spriteBatch.Draw(texture.getTexture(), location + new Vector2(32f, 32f), new Rectangle(0, 0, 16 , 16), color * transparency, 0.0f, new Vector2(8f, 8f), 4f * scaleSize, SpriteEffects.None, layerDepth); - } - - public Type getCustomType() - { - return this.GetType(); - } - - public string GetSerializationName() - { - return this.GetType().ToString(); - } - - public override int maximumStackSize() - { - return 1; - } - - public override bool canBeDropped() - { - return true; - } - - public override bool canBeTrashed() - { - return true; - } - - public override void setNewTileIndexForUpgradeLevel() - { - //Do nothing. - } - - /// - /// Serializes the said item properly. - /// - /// - public static void Serialize(Item I) - { - SerializationInformation.Serialization_ExtendedAxe sAxe = new SerializationInformation.Serialization_ExtendedAxe((I as ExtendedAxe)); - String savePath = ModCore.SerializationManager.playerInventoryPath; - String fileName = I.Name + ".json"; - String resultPath = Path.Combine(savePath, fileName); - int count = 0; - while (File.Exists(resultPath)) - { - resultPath=Serialization.SerializationManager.getValidSavePathIfDuplicatesExist(I, savePath,count); - count++; - } - StardustCore.ModCore.ModHelper.WriteJsonFile(resultPath, sAxe); - } - - /// - /// Serializes the said item to a chest. - /// - /// - /// - public static void SerializeToContainer(Item I, string s) - { - SerializationInformation.Serialization_ExtendedAxe sAxe = new SerializationInformation.Serialization_ExtendedAxe((I as ExtendedAxe)); - String savePath = s; - String fileName = I.Name + ".json"; - String resultPath = Path.Combine(savePath, fileName); - int count = 0; - while (File.Exists(resultPath)) - { - resultPath = Serialization.SerializationManager.getValidSavePathIfDuplicatesExist(I, savePath, count); - count++; - } - StardustCore.ModCore.ModHelper.WriteJsonFile(resultPath, sAxe); - } - - /// - /// Deserializes the object from a .json. - /// - /// - /// - public static ExtendedAxe Deserialize(string data) - { - Serialization_ExtendedAxe axeData= ModCore.ModHelper.ReadJsonFile(data); - return new ExtendedAxe(axeData); - } - - - } -} diff --git a/GeneralMods/StardustCore/Objects/Tools/ExtendedHoe.cs b/GeneralMods/StardustCore/Objects/Tools/ExtendedHoe.cs deleted file mode 100644 index 67edd662..00000000 --- a/GeneralMods/StardustCore/Objects/Tools/ExtendedHoe.cs +++ /dev/null @@ -1,142 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Microsoft.Xna.Framework; -using Microsoft.Xna.Framework.Graphics; -using StardewModdingAPI; -using StardewValley; -using StardustCore.Interfaces; -using StardustCore.Objects.Tools.SerializationInformation; -using StardustCore.UIUtilities; - -namespace StardustCore.Objects.Tools -{ - public class ExtendedHoe : StardewValley.Tools.Hoe, IItemSerializeable, IToolSerializer - { - public Texture2DExtended texture; - - public override string DisplayName { get => this.displayName; set => this.displayName = value; } - public override string Name { get => this.displayName; set => this.displayName = value; } - - /// - /// Generates a default axe. Doens't really do much. - /// - public ExtendedHoe() : base() - { - this.texture = new Texture2DExtended(StardustCore.ModCore.ModHelper,ModCore.Manifest ,Path.Combine("Content", "Graphics", "Tools", "CustomAxe.png")); - } - - public ExtendedHoe(BasicToolInfo info, Texture2DExtended texture) - { - this.texture = texture; - this.displayName = info.name; - this.description = info.description; - this.UpgradeLevel = info.level; - } - - public ExtendedHoe(SerializedObjectBase dataBase) : base() - { - StardustCore.ModCore.ModMonitor.Log("WTF EVEN " + dataBase.GetType().ToString()); - StardustCore.ModCore.ModMonitor.Log((dataBase as Serialization_ExtendedHoe).Name); - this.displayName = "Hello"; - this.description = (dataBase as Serialization_ExtendedHoe).Description; - this.texture = StardustCore.ModCore.TextureManager.getTexture((dataBase as Serialization_ExtendedHoe).TextureInformation.Name); - this.UpgradeLevel = (dataBase as Serialization_ExtendedHoe).UpgradeLevel; - } - - public override bool canBeDropped() - { - return true; - } - - public override bool canBeTrashed() - { - return true; - } - - public override void draw(SpriteBatch b) - { - base.draw(b); - } - - public override void drawInMenu(SpriteBatch spriteBatch, Vector2 location, float scaleSize, float transparency, float layerDepth, bool drawStackNumber, Color color, bool drawShadow) - { - spriteBatch.Draw(texture.getTexture(), location + new Vector2(32f, 32f), new Rectangle(0, 0, 16, 16), color * transparency, 0.0f, new Vector2(8f, 8f), 4f * scaleSize, SpriteEffects.None, layerDepth); - } - - public Type getCustomType() - { - return this.GetType(); - } - - public string GetSerializationName() - { - return this.GetType().ToString(); - } - - public override int maximumStackSize() - { - return 1; - } - - public override void setNewTileIndexForUpgradeLevel() - { - //Do nothing. - } - - /// - /// Serializes the said item properly. - /// - /// - public static void Serialize(Item I) - { - SerializationInformation.Serialization_ExtendedHoe sAxe = new SerializationInformation.Serialization_ExtendedHoe((I as ExtendedHoe)); - String savePath = ModCore.SerializationManager.playerInventoryPath; - String fileName = I.Name + ".json"; - String resultPath = Path.Combine(savePath, fileName); - int count = 0; - while (File.Exists(resultPath)) - { - resultPath = Serialization.SerializationManager.getValidSavePathIfDuplicatesExist(I, savePath, count); - count++; - } - StardustCore.ModCore.ModHelper.WriteJsonFile(resultPath, sAxe); - } - - /// - /// Serializes the said item to a chest. - /// - /// - /// - public static void SerializeToContainer(Item I, string s) - { - SerializationInformation.Serialization_ExtendedHoe sAxe = new SerializationInformation.Serialization_ExtendedHoe((I as ExtendedHoe)); - String savePath = s; - String fileName = I.Name + ".json"; - String resultPath = Path.Combine(savePath, fileName); - int count = 0; - while (File.Exists(resultPath)) - { - resultPath = Serialization.SerializationManager.getValidSavePathIfDuplicatesExist(I, savePath, count); - count++; - } - StardustCore.ModCore.ModHelper.WriteJsonFile(resultPath, sAxe); - } - - /// - /// Deserializes the object from a .json. - /// - /// - /// - public static ExtendedHoe Deserialize(string data) - { - Serialization_ExtendedHoe axeData = ModCore.ModHelper.ReadJsonFile(data); - return new ExtendedHoe(axeData); - } - - - } -} diff --git a/GeneralMods/StardustCore/Objects/Tools/ExtendedPickaxe.cs b/GeneralMods/StardustCore/Objects/Tools/ExtendedPickaxe.cs deleted file mode 100644 index c03720f2..00000000 --- a/GeneralMods/StardustCore/Objects/Tools/ExtendedPickaxe.cs +++ /dev/null @@ -1,142 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Microsoft.Xna.Framework; -using Microsoft.Xna.Framework.Graphics; -using StardewModdingAPI; -using StardewValley; -using StardustCore.Interfaces; -using StardustCore.Objects.Tools.SerializationInformation; -using StardustCore.UIUtilities; - -namespace StardustCore.Objects.Tools -{ - public class ExtendedPickaxe : StardewValley.Tools.Pickaxe, IItemSerializeable, IToolSerializer - { - public Texture2DExtended texture; - - public override string DisplayName { get => this.displayName; set => this.displayName = value; } - public override string Name { get => this.displayName; set => this.displayName = value; } - - /// - /// Generates a default axe. Doens't really do much. - /// - public ExtendedPickaxe() : base() - { - this.texture = new Texture2DExtended(StardustCore.ModCore.ModHelper, ModCore.Manifest,Path.Combine("Content", "Graphics", "Tools", "CustomAxe.png")); - } - - public ExtendedPickaxe(BasicToolInfo info, Texture2DExtended texture) - { - this.texture = texture; - this.displayName = info.name; - this.description = info.description; - this.UpgradeLevel = info.level; - } - - public ExtendedPickaxe(SerializedObjectBase dataBase) : base() - { - StardustCore.ModCore.ModMonitor.Log("WTF EVEN " + dataBase.GetType().ToString()); - StardustCore.ModCore.ModMonitor.Log((dataBase as Serialization_ExtendedPickaxe).Name); - this.displayName = "Hello"; - this.description = (dataBase as Serialization_ExtendedPickaxe).Description; - this.texture = this.texture = StardustCore.ModCore.TextureManager.getTexture((dataBase as Serialization_ExtendedPickaxe).TextureInformation.Name); - this.UpgradeLevel = (dataBase as Serialization_ExtendedPickaxe).UpgradeLevel; - } - - public override bool canBeDropped() - { - return true; - } - - public override bool canBeTrashed() - { - return true; - } - - public override void draw(SpriteBatch b) - { - base.draw(b); - } - - public override void drawInMenu(SpriteBatch spriteBatch, Vector2 location, float scaleSize, float transparency, float layerDepth, bool drawStackNumber, Color color, bool drawShadow) - { - spriteBatch.Draw(texture.getTexture(), location + new Vector2(32f, 32f), new Rectangle(0, 0, 16, 16), color * transparency, 0.0f, new Vector2(8f, 8f), 4f * scaleSize, SpriteEffects.None, layerDepth); - } - - public Type getCustomType() - { - return this.GetType(); - } - - public string GetSerializationName() - { - return this.GetType().ToString(); - } - - public override int maximumStackSize() - { - return 1; - } - - public override void setNewTileIndexForUpgradeLevel() - { - //Do nothing. - } - - /// - /// Serializes the said item properly. - /// - /// - public static void Serialize(Item I) - { - SerializationInformation.Serialization_ExtendedPickaxe sAxe = new SerializationInformation.Serialization_ExtendedPickaxe((I as ExtendedPickaxe)); - String savePath = ModCore.SerializationManager.playerInventoryPath; - String fileName = I.Name + ".json"; - String resultPath = Path.Combine(savePath, fileName); - int count = 0; - while (File.Exists(resultPath)) - { - resultPath = Serialization.SerializationManager.getValidSavePathIfDuplicatesExist(I, savePath, count); - count++; - } - StardustCore.ModCore.ModHelper.WriteJsonFile(resultPath, sAxe); - } - - /// - /// Serializes the said item to a chest. - /// - /// - /// - public static void SerializeToContainer(Item I, string s) - { - SerializationInformation.Serialization_ExtendedPickaxe sAxe = new SerializationInformation.Serialization_ExtendedPickaxe((I as ExtendedPickaxe)); - String savePath = s; - String fileName = I.Name + ".json"; - String resultPath = Path.Combine(savePath, fileName); - int count = 0; - while (File.Exists(resultPath)) - { - resultPath = Serialization.SerializationManager.getValidSavePathIfDuplicatesExist(I, savePath, count); - count++; - } - StardustCore.ModCore.ModHelper.WriteJsonFile(resultPath, sAxe); - } - - /// - /// Deserializes the object from a .json. - /// - /// - /// - public static ExtendedPickaxe Deserialize(string data) - { - Serialization_ExtendedPickaxe axeData = ModCore.ModHelper.ReadJsonFile(data); - return new ExtendedPickaxe(axeData); - } - - - } -} diff --git a/GeneralMods/StardustCore/Objects/Tools/ExtendedWateringCan.cs b/GeneralMods/StardustCore/Objects/Tools/ExtendedWateringCan.cs deleted file mode 100644 index 48b90d38..00000000 --- a/GeneralMods/StardustCore/Objects/Tools/ExtendedWateringCan.cs +++ /dev/null @@ -1,156 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Microsoft.Xna.Framework; -using Microsoft.Xna.Framework.Graphics; -using StardewModdingAPI; -using StardewValley; -using StardustCore.Interfaces; -using StardustCore.Objects.Tools.SerializationInformation; -using StardustCore.UIUtilities; - -namespace StardustCore.Objects.Tools -{ - public class ExtendedWateringCan : StardewValley.Tools.WateringCan, IItemSerializeable, IToolSerializer - { - public Texture2DExtended texture; - - public override string DisplayName { get => this.displayName; set => this.displayName = value; } - public override string Name { get => this.displayName; set => this.displayName = value; } - - /// - /// Generates a default axe. Doens't really do much. - /// - public ExtendedWateringCan() : base() - { - this.texture = new Texture2DExtended(StardustCore.ModCore.ModHelper, ModCore.Manifest,Path.Combine("Content", "Graphics", "Tools", "CustomAxe.png")); - this.waterCanMax = 30; - this.WaterLeft = 0; - } - - public ExtendedWateringCan(BasicToolInfo info, Texture2DExtended texture, int waterMax, int waterCurrent) - { - this.texture = texture; - this.displayName = info.name; - this.description = info.description; - this.UpgradeLevel = info.level; - this.waterCanMax = waterMax; - this.WaterLeft = waterCurrent; - } - - public ExtendedWateringCan(SerializedObjectBase dataBase) : base() - { - StardustCore.ModCore.ModMonitor.Log((dataBase as Serialization_ExtendedWateringCan).Name); - this.displayName = "Hello"; - this.description = (dataBase as Serialization_ExtendedWateringCan).Description; - this.texture = StardustCore.ModCore.TextureManager.getTexture((dataBase as Serialization_ExtendedWateringCan).TextureInformation.Name); - this.UpgradeLevel = (dataBase as Serialization_ExtendedWateringCan).UpgradeLevel; - this.waterCanMax= (dataBase as Serialization_ExtendedWateringCan).MaxCapacity; - this.WaterLeft= (dataBase as Serialization_ExtendedWateringCan).WaterLeft; - } - - public override void draw(SpriteBatch b) - { - base.draw(b); - } - - public override void drawInMenu(SpriteBatch spriteBatch, Vector2 location, float scaleSize, float transparency, float layerDepth, bool drawStackNumber, Color color, bool drawShadow) - { - spriteBatch.Draw(texture.getTexture(), location + new Vector2(32f, 32f), new Rectangle(0, 0, 16, 16), color * transparency, 0.0f, new Vector2(8f, 8f), 4f * scaleSize, SpriteEffects.None, layerDepth); - if (!drawStackNumber || Game1.player.hasWateringCanEnchantment) - return; - spriteBatch.Draw(Game1.mouseCursors, location + new Vector2(4f, 44f), new Rectangle?(new Rectangle(297, 420, 14, 5)), Color.White * transparency, 0.0f, Vector2.Zero, 4f, SpriteEffects.None, layerDepth + 0.0001f); - spriteBatch.Draw(Game1.staminaRect, new Rectangle((int)location.X + 8, (int)location.Y + 64 - 16, (int)((double)this.WaterLeft / (double)this.waterCanMax * 48.0), 8), Color.DodgerBlue * 0.7f * transparency); - } - - public override bool canBeDropped() - { - return true; - } - - public override bool canBeTrashed() - { - return true; - } - - public Type getCustomType() - { - return this.GetType(); - } - - public string GetSerializationName() - { - return this.GetType().ToString(); - } - - public override int maximumStackSize() - { - return 1; - } - - public override void setNewTileIndexForUpgradeLevel() - { - //Do nothing. - } - - public void upgradeWateringCapacity(int amount) - { - this.waterCanMax += amount; - } - - /// - /// Serializes the said item properly. - /// - /// - public static void Serialize(Item I) - { - SerializationInformation.Serialization_ExtendedWateringCan tool = new SerializationInformation.Serialization_ExtendedWateringCan((I as ExtendedWateringCan)); - String savePath = ModCore.SerializationManager.playerInventoryPath; - String fileName = I.Name + ".json"; - String resultPath = Path.Combine(savePath, fileName); - int count = 0; - while (File.Exists(resultPath)) - { - resultPath = Serialization.SerializationManager.getValidSavePathIfDuplicatesExist(I, savePath, count); - count++; - } - StardustCore.ModCore.ModHelper.WriteJsonFile(resultPath, tool); - } - - /// - /// Serializes the said item to a chest. - /// - /// - /// - public static void SerializeToContainer(Item I, string s) - { - SerializationInformation.Serialization_ExtendedWateringCan tool = new SerializationInformation.Serialization_ExtendedWateringCan((I as ExtendedWateringCan)); - String savePath = s; - String fileName = I.Name + ".json"; - String resultPath = Path.Combine(savePath, fileName); - int count = 0; - while (File.Exists(resultPath)) - { - resultPath = Serialization.SerializationManager.getValidSavePathIfDuplicatesExist(I, savePath, count); - count++; - } - StardustCore.ModCore.ModHelper.WriteJsonFile(resultPath, tool); - } - - /// - /// Deserializes the object from a .json. - /// - /// - /// - public static ExtendedWateringCan Deserialize(string data) - { - SerializationInformation.Serialization_ExtendedWateringCan toolData = ModCore.ModHelper.ReadJsonFile< SerializationInformation.Serialization_ExtendedWateringCan>(data); - return new ExtendedWateringCan(toolData); - } - - - } -} diff --git a/GeneralMods/StardustCore/Objects/Tools/SerializationInformation/Serialization_ExtendedAxe.cs b/GeneralMods/StardustCore/Objects/Tools/SerializationInformation/Serialization_ExtendedAxe.cs deleted file mode 100644 index fc296b61..00000000 --- a/GeneralMods/StardustCore/Objects/Tools/SerializationInformation/Serialization_ExtendedAxe.cs +++ /dev/null @@ -1,43 +0,0 @@ -using StardustCore.Interfaces; -using StardustCore.Objects.Tools.SerializationInformation; -using StardustCore.UIUtilities; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace StardustCore.Objects.Tools.SerializationInformation -{ - public class Serialization_ExtendedAxe : SerializedObjectBase - { - public string Name; - public string Description; - public int UpgradeLevel; - public Texture2DExtended TextureInformation; - - public Serialization_ExtendedAxe() : base() - { - this.SerializationName = GetSerializationName(); - } - - public Serialization_ExtendedAxe(ExtendedAxe axe) : base() - { - this.UpgradeLevel = axe.UpgradeLevel; - this.Name = axe.Name; - this.Description = axe.description; - this.TextureInformation = axe.texture; - this.SerializationName = GetSerializationName(); - } - - public override Type getCustomType() - { - return typeof(ExtendedAxe); - } - - public override string GetSerializationName() - { - return typeof(ExtendedAxe).ToString(); - } - } -} diff --git a/GeneralMods/StardustCore/Objects/Tools/SerializationInformation/Serialization_ExtendedHoe.cs b/GeneralMods/StardustCore/Objects/Tools/SerializationInformation/Serialization_ExtendedHoe.cs deleted file mode 100644 index a314f0c6..00000000 --- a/GeneralMods/StardustCore/Objects/Tools/SerializationInformation/Serialization_ExtendedHoe.cs +++ /dev/null @@ -1,43 +0,0 @@ -using StardustCore.Interfaces; -using StardustCore.Objects.Tools.SerializationInformation; -using StardustCore.UIUtilities; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace StardustCore.Objects.Tools.SerializationInformation -{ - public class Serialization_ExtendedHoe : SerializedObjectBase - { - public string Name; - public string Description; - public int UpgradeLevel; - public Texture2DExtended TextureInformation; - - public Serialization_ExtendedHoe() : base() - { - this.SerializationName = GetSerializationName(); - } - - public Serialization_ExtendedHoe(ExtendedHoe axe) : base() - { - this.UpgradeLevel = axe.UpgradeLevel; - this.Name = axe.Name; - this.Description = axe.description; - this.TextureInformation = axe.texture; - this.SerializationName = GetSerializationName(); - } - - public override Type getCustomType() - { - return typeof(ExtendedHoe); - } - - public override string GetSerializationName() - { - return typeof(ExtendedHoe).ToString(); - } - } -} diff --git a/GeneralMods/StardustCore/Objects/Tools/SerializationInformation/Serialization_ExtendedPickaxe.cs b/GeneralMods/StardustCore/Objects/Tools/SerializationInformation/Serialization_ExtendedPickaxe.cs deleted file mode 100644 index 15a78bd3..00000000 --- a/GeneralMods/StardustCore/Objects/Tools/SerializationInformation/Serialization_ExtendedPickaxe.cs +++ /dev/null @@ -1,42 +0,0 @@ -using StardustCore.Interfaces; -using StardustCore.UIUtilities; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace StardustCore.Objects.Tools.SerializationInformation -{ - public class Serialization_ExtendedPickaxe : SerializedObjectBase - { - public string Name; - public string Description; - public int UpgradeLevel; - public Texture2DExtended TextureInformation; - - public Serialization_ExtendedPickaxe() : base() - { - this.SerializationName = GetSerializationName(); - } - - public Serialization_ExtendedPickaxe(ExtendedPickaxe axe) : base() - { - this.UpgradeLevel = axe.UpgradeLevel; - this.Name = axe.Name; - this.Description = axe.description; - this.TextureInformation = axe.texture; - this.SerializationName = GetSerializationName(); - } - - public override Type getCustomType() - { - return typeof(ExtendedPickaxe); - } - - public override string GetSerializationName() - { - return typeof(ExtendedPickaxe).ToString(); - } - } -} diff --git a/GeneralMods/StardustCore/Objects/Tools/SerializationInformation/Serialization_ExtendedWateringCan.cs b/GeneralMods/StardustCore/Objects/Tools/SerializationInformation/Serialization_ExtendedWateringCan.cs deleted file mode 100644 index 7f99ebd7..00000000 --- a/GeneralMods/StardustCore/Objects/Tools/SerializationInformation/Serialization_ExtendedWateringCan.cs +++ /dev/null @@ -1,46 +0,0 @@ -using StardustCore.Interfaces; -using StardustCore.UIUtilities; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace StardustCore.Objects.Tools.SerializationInformation -{ - public class Serialization_ExtendedWateringCan : SerializedObjectBase - { - public string Name; - public string Description; - public int UpgradeLevel; - public Texture2DExtended TextureInformation; - public int MaxCapacity; - public int WaterLeft; - - public Serialization_ExtendedWateringCan() : base() - { - this.SerializationName = GetSerializationName(); - } - - public Serialization_ExtendedWateringCan(ExtendedWateringCan tool) : base() - { - this.UpgradeLevel = tool.UpgradeLevel; - this.Name = tool.Name; - this.Description = tool.description; - this.TextureInformation = tool.texture; - this.SerializationName = GetSerializationName(); - this.MaxCapacity = tool.waterCanMax; - this.WaterLeft = tool.WaterLeft; - } - - public override Type getCustomType() - { - return typeof(ExtendedWateringCan); - } - - public override string GetSerializationName() - { - return typeof(ExtendedWateringCan).ToString(); - } - } -} diff --git a/GeneralMods/StardustCore/Objects/Tools/SerializationInformation/SerializedObjectBase.cs b/GeneralMods/StardustCore/Objects/Tools/SerializationInformation/SerializedObjectBase.cs deleted file mode 100644 index c315a1e5..00000000 --- a/GeneralMods/StardustCore/Objects/Tools/SerializationInformation/SerializedObjectBase.cs +++ /dev/null @@ -1,29 +0,0 @@ -using StardustCore.Interfaces; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace StardustCore.Objects.Tools.SerializationInformation -{ - public class SerializedObjectBase : IItemSerializeable - { - public string SerializationName; - - public SerializedObjectBase() - { - this.SerializationName = this.GetSerializationName(); - } - - public virtual Type getCustomType() - { - return this.GetType(); - } - - public virtual string GetSerializationName() - { - return this.GetType().ToString(); - } - } -} diff --git a/GeneralMods/StardustCore/Serialization/Serialization.cs b/GeneralMods/StardustCore/Serialization/Serialization.cs deleted file mode 100644 index b432640a..00000000 --- a/GeneralMods/StardustCore/Serialization/Serialization.cs +++ /dev/null @@ -1,971 +0,0 @@ -using Microsoft.Xna.Framework; -using Newtonsoft.Json; -using Newtonsoft.Json.Linq; -using StardewModdingAPI; -using StardewValley; -using StardewValley.Buildings; -using StardewValley.Objects; -using StardustCore.Interfaces; -using StardustCore.Objects.Tools; -using StardustCore.Objects.Tools.SerializationInformation; -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Xml; - -namespace StardustCore.Serialization -{ - - /// - /// TODO: Find a way to serialize objects and tools. - /// - - - public class SerializationManager - { - public string objectsInWorldPath; - public string playerInventoryPath; - public string serializerTrashPath; - public string storageContainerPath; - - - public Dictionary acceptedTypes = new Dictionary(); - public List trackedObjectList = new List(); - - - - public SerializationManager(string PlayerInventoryPath,string SerializerTrashPath,string ObjectsInWorldPath,string StorageContainerPath) - { - objectsInWorldPath = ObjectsInWorldPath; - playerInventoryPath = PlayerInventoryPath; - serializerTrashPath = SerializerTrashPath; - storageContainerPath = StorageContainerPath; - verifyAllDirectoriesExist(); - } - - private void verifyAllDirectoriesExist() - { - if (!Directory.Exists(playerInventoryPath)) Directory.CreateDirectory(playerInventoryPath); - if (!Directory.Exists(serializerTrashPath)) Directory.CreateDirectory(serializerTrashPath); - if (!Directory.Exists(objectsInWorldPath)) Directory.CreateDirectory(objectsInWorldPath); - if (!Directory.Exists(storageContainerPath)) Directory.CreateDirectory(storageContainerPath); - } - - public void cleanUpInventory() - { - - return; - - ProcessDirectoryForDeletion(playerInventoryPath); - - //ProcessDirectoryForDeletion(SerializerTrashPath); - - List removalList = new List(); - foreach (Item d in Game1.player.Items) - { - try - { - if (d == null) - { - //Log.AsyncG("WTF"); - continue; - } - // Log.AsyncC(d.GetType()); - } - catch (Exception err) - { - ModCore.ModMonitor.Log(err.ToString()); - } - - string s = Convert.ToString((d.GetType())); - - if (acceptedTypes.ContainsKey(s)) - { - SerializerDataNode t; - - bool works = acceptedTypes.TryGetValue(s, out t); - if (works == true) - { - t.serialize.Invoke(d); - removalList.Add(d); - } - } - } - foreach (var i in removalList) - { - Game1.player.removeItemFromInventory(i); - } - - if (Game1.IsMasterGame) - { - foreach (Farmer f in Game1.getAllFarmhands()) - { - List farmHandCleaner = new List(); - foreach (Item i in f.Items) - { - if (i == null) continue; - string s = Convert.ToString((i.GetType())); - - if (acceptedTypes.ContainsKey(s)) - { - SerializerDataNode t; - - bool works = acceptedTypes.TryGetValue(s, out t); - if (works == true) - { - farmHandCleaner.Add(i); - } - } - - - } - foreach(Item i in farmHandCleaner) - { - f.removeItemFromInventory(i); - } - } - } - removalList.Clear(); - } - - /// - /// Removes custom objects from the world and saves them to a file. - /// - public void cleanUpWorld() - { - return; - - try - { - ProcessDirectoryForDeletion(objectsInWorldPath); - } - catch(Exception e) - { - ModCore.ModMonitor.Log(e.ToString()); - } - List removalList = new List(); - int countProcessed = 0; - List idk = new List(); - - List allLocations = new List(); - foreach (GameLocation location in Game1.locations) - { - allLocations.Add(location); - } - foreach(Building b in Game1.getFarm().buildings) - { - allLocations.Add(b.indoors); - } - - foreach(GameLocation loc in allLocations) - { - foreach(var layer in loc.objects) - { - foreach(var pair in layer) - { - if (removalList.Contains((pair.Value as CoreObject))) continue; - try - { - if (pair.Value == null) - { - //Log.AsyncG("WTF"); - continue; - } - // Log.AsyncC(d.GetType()); - } - catch (Exception e) - { - //ModCore.ModMonitor.Log(e.ToString()); - } - string s = Convert.ToString((pair.Value.GetType())); - - if (acceptedTypes.ContainsKey(s)) - { - // Log.AsyncM("Object is of accepted type: " + s); - SerializerDataNode t; - - bool works = acceptedTypes.TryGetValue(s, out t); - if (works == true) - { - countProcessed++; - if ((pair.Value as CoreObject).useXML == false) - { - // Log.AsyncY("Saving the object"); - //Removes the object from the world and saves it to a file. - t.worldObj.Invoke((pair.Value as CoreObject)); - } - else - { - idk.Add((pair.Value as CoreObject)); - } - // Log.AsyncC("Progress on saving objects: " + countProcessed + "/" + Lists.trackedObjectList.Count); - removalList.Add((pair.Value as CoreObject)); - } - } - } - } - } - - foreach (CoreObject d in trackedObjectList) - { - - if (removalList.Contains(d)) continue; - try - { - if (d == null) - { - //Log.AsyncG("WTF"); - continue; - } - // Log.AsyncC(d.GetType()); - } - catch (Exception e) - { - //ModCore.ModMonitor.Log(e.ToString()); - } - string s = Convert.ToString((d.GetType())); - - if (acceptedTypes.ContainsKey(s)) - { - // Log.AsyncM("Object is of accepted type: " + s); - SerializerDataNode t; - - bool works = acceptedTypes.TryGetValue(s, out t); - if (works == true) - { - countProcessed++; - if (d.useXML == false) - { - // Log.AsyncY("Saving the object"); - //Removes the object from the world and saves it to a file. - t.worldObj.Invoke(d); - } - else - { - idk.Add(d); - } - // Log.AsyncC("Progress on saving objects: " + countProcessed + "/" + Lists.trackedObjectList.Count); - removalList.Add(d); - } - } - } - foreach (var i in removalList) - { - if (i.getCustomType() == typeof(CoreObject)) - { - (i as CoreObject).thisLocation.removeObject((i as CoreObject).TileLocation, false); - } - } - foreach (var v in idk) - { - string s = Convert.ToString((v.GetType())); - - if (acceptedTypes.ContainsKey(s)) - { - SerializerDataNode t; - - bool works = acceptedTypes.TryGetValue(s, out t); - if (works == true) - { - countProcessed++; - //If the item is a core object I can validate that it is in the world and not in an inventory. - if ((v is CoreObject)) - { - if ((v as CoreObject).useXML == true) - { - t.worldObj.Invoke(v as CoreObject); - } - //Log.AsyncG("Progress on saving objects: " + countProcessed + "/" + Lists.trackedObjectList.Count); - removalList.Add(v as CoreObject); - } - } - } - } - - removalList.Clear(); - // Log.AsyncM("Revitalize: Done cleaning world for saving."); - - } - - /// - /// Clean all of the storage containers in the game from custom objects. - /// - public void cleanUpStorageContainers() - { - return; - ProcessDirectoryForDeletion(storageContainerPath); - - List removalList = new List(); - foreach (GameLocation loc in Game1.locations) - { - int i = loc.objects.Pairs.Count(); - int j = 0; - foreach (KeyValuePair obj in loc.objects.Pairs) - { - j++; - //ModCore.ModMonitor.Log("Parsing location " + loc.Name + " : object number" + j + "/" + i + " : object name: " + obj.Value.name); - - //If the object is a chest get the items from it. - if (obj.Value is StardewValley.Objects.Chest) { - int k = (obj.Value as StardewValley.Objects.Chest).items.Count; - int l = 0; - foreach (var item in (obj.Value as StardewValley.Objects.Chest).items) - { - l++; - //ModCore.ModMonitor.Log("Parsing Chest at : " + loc.Name + " X: " + obj.Key.X + " Y: " + obj.Key.Y + " : object number: " + l + "/" + k + "object name: " + item.Name); - if (item is IItemSerializeable) removalList.Add(item); - } - - foreach(var v in removalList) - { - (obj.Value as StardewValley.Objects.Chest).items.Remove(v); - - SerializerDataNode t; - if (acceptedTypes.ContainsKey((v as IItemSerializeable).GetSerializationName())) - { - acceptedTypes.TryGetValue((v as IItemSerializeable).GetSerializationName(), out t); - string s = Path.Combine(loc.Name, "Chest," + Convert.ToString((int)obj.Key.X) + "," + Convert.ToString((int)obj.Key.Y)); - string s2 = Path.Combine(ModCore.SerializationManager.storageContainerPath, s); - if (!Directory.Exists(s)) Directory.CreateDirectory(s2); - t.serializeToContainer.Invoke(v, s2); - } - } - removalList.Clear(); - } - } - } - if (Game1.getFarm() == null) return; - if (Game1.getFarm().buildings == null) return; - //Look through all farm buildings for custom items. - foreach (Building building in Game1.getFarm().buildings) - { - if (building == null) continue; - if (String.IsNullOrEmpty(building.nameOfIndoors)) continue; - GameLocation loc =Game1.getLocationFromName(building.nameOfIndoors,true); - //ModCore.ModMonitor.Log("Cleaning up farm building: "+loc.uniqueName.Value); - int i = loc.objects.Pairs.Count(); - int j = 0; - foreach (KeyValuePair obj in loc.objects.Pairs) - { - j++; - //ModCore.ModMonitor.Log("Parsing location " + loc.Name + " : object number" + j + "/" + i + " : object name: " + obj.Value.name); - //Look through all chests in all farm buildings. - if (obj.Value is StardewValley.Objects.Chest) - { - int k = (obj.Value as StardewValley.Objects.Chest).items.Count; - int l = 0; - foreach (var item in (obj.Value as StardewValley.Objects.Chest).items) - { - l++; - //ModCore.ModMonitor.Log("Parsing Chest at : " + loc.Name + " X: " + obj.Key.X + " Y: " + obj.Key.Y + " : object number: " + l + "/" + k + "object name: " + item.Name); - if (item is IItemSerializeable) removalList.Add(item); - } - foreach(var v in removalList) - { - (obj.Value as StardewValley.Objects.Chest).items.Remove(v); - - SerializerDataNode t; - if(acceptedTypes.ContainsKey((v as IItemSerializeable).GetSerializationName())){ - acceptedTypes.TryGetValue((v as IItemSerializeable).GetSerializationName(), out t); - string s = Path.Combine(building.nameOfIndoors, "Chest,"+Convert.ToString( (int)obj.Key.X)+","+Convert.ToString((int)obj.Key.Y)); - string s2 = Path.Combine(ModCore.SerializationManager.storageContainerPath, s); - if (!Directory.Exists(s)) Directory.CreateDirectory(s2); - t.serializeToContainer.Invoke(v, s2); - } - } - removalList.Clear(); - } - } - } - } - - /// - /// Reloads all modded objects added by this mod back to the game in proper locations. - /// - /// - public void restoreAllModObjects(List thingsToAddBackIn, bool onlyInventory=false) - { - return; - processDirectoryForDeserialization(playerInventoryPath,thingsToAddBackIn); - if (onlyInventory) return; - - // Log.AsyncG("Done deserializing player inventory."); - try - { - trackedObjectList.Clear(); //clear whatever mod objects I'm tracking - processDirectoryForDeserialization(objectsInWorldPath,thingsToAddBackIn); //restore whatever I'm tracking here when I replace the object back into the world. This also works when loading up the game, not just when saving/loading - processDirectoryForDeserializationIntoContainer(storageContainerPath, thingsToAddBackIn); - } - catch (Exception e) - { - ModCore.ModMonitor.Log(e.ToString()); - } - } - - - public void ProcessDirectoryForDeletion(string targetDirectory) - { - // Process the list of files found in the directory. - string[] fileEntries = Directory.GetFiles(targetDirectory); - foreach (string fileName in fileEntries) - { - File.Delete(fileName); - // File.Delete(fileName); - } - - // Recurse into subdirectories of this directory. - string[] subdirectoryEntries = Directory.GetDirectories(targetDirectory); - foreach (string subdirectory in subdirectoryEntries) - ProcessDirectoryForDeletion(subdirectory); - - } - - - public void serializeXML(Item I) - { - System.Xml.Serialization.XmlSerializer xmlSerializer = new System.Xml.Serialization.XmlSerializer(typeof(T)); - var newWriter = new StringWriter(); - using (var writer = XmlWriter.Create(newWriter)) - { - xmlSerializer.Serialize(writer,I); - } - } - - /// - /// - /// - /// - /// Typically this would be the trackedObjectList. - public void processDirectoryForDeserialization(string pathToFile,List thingsToAddBackIn) - { - //StardustCore.ModCore.ModMonitor.Log("Look through dir: " + pathToFile); - string[] fileEntries = Directory.GetFiles(pathToFile); - // Log.AsyncC(pathToFile); - - foreach(var fileName in fileEntries) - { - ProcessFileForCleanUp(fileName,thingsToAddBackIn); - // Log.AsyncG(fileName); - } - - string[] subDirectories = Directory.GetDirectories(pathToFile); - foreach(var folder in subDirectories) - { - processDirectoryForDeserialization(folder,thingsToAddBackIn); - } - - } - - public void processDirectoryForDeserializationIntoContainer(string pathToFile, List thingsToAddBackIn) - { - string[] fileEntries = Directory.GetFiles(pathToFile); - // Log.AsyncC(pathToFile); - - foreach (var fileName in fileEntries) - { - ProcessFileForCleanUpIntoContainer(fileName, thingsToAddBackIn); - // Log.AsyncG(fileName); - } - - string[] subDirectories = Directory.GetDirectories(pathToFile); - foreach (var folder in subDirectories) - { - processDirectoryForDeserializationIntoContainer(folder, thingsToAddBackIn); - } - - } - - public void ProcessFileForCleanUp(string path, List thingsToAddBackIn) - { - - try - { - string type = ""; - int count = 0; - while (type == "" || type==null) - { - if (count == 0) - { - //THE ERROR LIES HERE AS IT THINKS IT CAN TRY TO BE A CORE OBJECT WHEN IT IS NOT!!!! - CoreObject core_obj = StardustCore.ModCore.ModHelper.ReadJsonFile(path); //FIND A WAY TO FIX THIS!!!! - type = (core_obj as CoreObject).serializationName; - //ModCore.ModMonitor.Log("UMM THIS CAN't BE RIGHT 1" + type); - } - - if (count == 1) - { - //THIS NEEDS TO BE SOMETHING GENERIC!!! - SerializedObjectBase core_obj = StardustCore.ModCore.ModHelper.ReadJsonFile(path); - type = (core_obj as SerializedObjectBase).SerializationName; - //ModCore.ModMonitor.Log("UMM THIS CAN't BE RIGHT 2" + type); - } - - if (count == 2) - { - ModCore.ModMonitor.Log("A valid type could not be found for the file: "+path); - return; - } - - count++; - } - - foreach (KeyValuePair pair in acceptedTypes) - { - // Log.AsyncY(pair.Key); - if (pair.Key == type) - { - try - { - //parse from Json Style - // Log.AsyncR("1"); - var cObj = pair.Value.parse.Invoke(path); - if (cObj is CoreObject) - { - (cObj as CoreObject).thisLocation = Game1.getLocationFromName((cObj as CoreObject).locationsName); - - if ((cObj as CoreObject).thisLocation == null) - { - Game1.player.addItemToInventory(cObj); - // Log.AsyncY("ADDED ITEM TO INVENTORY"); - return; - } - else - { - try - { - (cObj as CoreObject).thisLocation.objects.Add((cObj as CoreObject).TileLocation, (StardewValley.Object)cObj); - thingsToAddBackIn.Add(cObj as CoreObject); - } - catch(Exception err) - { - //throw new Exception(err.ToString()); - return; - } - //Util.placementAction(cObj, cObj.thisLocation,(int)cObj.tileLocation.X,(int) cObj.tileLocation.Y,null,false); - } - } - else - { - Game1.player.addItemToInventory(cObj); - } - } - catch (Exception e) - { - ModCore.ModMonitor.Log(e.ToString()); - // Log.AsyncO(e); - } - } - } - } - catch (Exception err) - { - ModCore.ModMonitor.Log(err.ToString()); - //Tool t = StardustCore.ModCore.ModHelper.ReadJsonFile(path); - } - - } - - - /* - /// - /// Process an item from a file back into it's original storage container. - /// - /// - /// - public void ProcessFileForCleanUpIntoContainer(string path, List thingsToAddBackIn) - { - - //Log.AsyncC(path); - string newLine = Environment.NewLine; - - string[] chestArray= path.Split(new string[] { "/"}, StringSplitOptions.None); - string[] chestArray2= path.Split(new string[] { "\\" }, StringSplitOptions.None); - /* - foreach (var v in chestArray) - { - Log.AsyncC("PART OF PATH "+v); - } - foreach (var v in chestArray2) - { - Log.AsyncC("PART OF PATH2 " + v); - } - - if (chestArray2.Length > chestArray.Length) chestArray = chestArray2; - - GameLocation loc = Game1.getLocationFromName(chestArray[chestArray.Length - 3]); - string[] chest = chestArray[chestArray.Length - 2].Split(','); - StardewValley.Object chestObject; - bool f = loc.objects.TryGetValue(new Microsoft.Xna.Framework.Vector2( Convert.ToInt32(chest[1]),Convert.ToInt32(chest[2])),out chestObject); - if (f == true) - { - ModCore.ModMonitor.Log("YAY"); - } - else - { - ModCore.ModMonitor.Log("BOO"); - } - - string[] ehh = File.ReadAllLines(path); - Item cObj; - string a; - string[] b; - string s = ""; - // Log.AsyncC(path); - // Log.AsyncC(data); - SerializedObjectBase obj = StardustCore.ModCore.ModHelper.ReadJsonFile(path); - try - { - // Log.AsyncC(obj.thisType); - - a = obj.SerializationName; - ModCore.ModMonitor.Log(":THIS IS MY TYPE!!!:" + a); - b = a.Split(','); - s = b.ElementAt(0); - // Log.AsyncC(s); - } - catch (Exception e) - { - ModCore.ModMonitor.Log(e.ToString()); - - //USE XML STYLE DESERIALIZING - foreach (KeyValuePair pair in acceptedTypes) - { - var word = ParseXMLType(path); - if (pair.Key == word.ToString()) - { - cObj = pair.Value.parse.Invoke(path); - if (cObj is CoreObject) - { - (cObj as CoreObject).thisLocation = Game1.getLocationFromName((cObj as CoreObject).locationsName); - (cObj as CoreObject).resetTexture(); - if ((cObj as CoreObject).thisLocation == null) - { - // Game1.player.addItemToInventory(cObj); - try - { - - Utilities.addItemToOtherInventory((chestObject as StardewValley.Objects.Chest).items, (cObj as CoreObject)); - } - catch (Exception err) - { - ModCore.ModMonitor.Log(err.ToString(), LogLevel.Error); - } - // Log.AsyncY("ADDED ITEM TO INVENTORY"); - return; - } - else - { - (cObj as CoreObject).thisLocation.objects.Add((cObj as CoreObject).TileLocation, (StardewValley.Object)cObj); - thingsToAddBackIn.Add((cObj as CoreObject)); - //Util.placementAction(cObj, cObj.thisLocation,(int)cObj.tileLocation.X,(int) cObj.tileLocation.Y,null,false); - } - } - else - { - - try - { - Utilities.addItemToOtherInventory((chestObject as StardewValley.Objects.Chest).items, cObj); - } - catch (Exception err) - { - ModCore.ModMonitor.Log(err.ToString(), LogLevel.Error); - } - - } - } - } - - // Log.AsyncG("attempting to parse from path and value of s is " + s); - } - - // var cObj = parseBagOfHolding(path); //pair.Value.parse.Invoke(path); - // cObj.TextureSheet = Game1.content.Load(Path.Combine("Revitalize", "CropsNSeeds", "Graphics", "seeds")); - /* - cObj.thisLocation = Game1.getLocationFromName(cObj.locationsName); - if (cObj.thisLocation == null) - { - Game1.player.addItemToInventory(cObj); - return; - } - else - { - cObj.thisLocation.objects.Add(cObj.tileLocation, cObj); - Lists.trackedObjectList.Add(cObj); - //Util.placementAction(cObj, cObj.thisLocation,(int)cObj.tileLocation.X,(int) cObj.tileLocation.Y,null,false); - } - - - //USE JSON STYLE DESERIALIZNG - if (acceptedTypes.ContainsKey(s)) - { - foreach (KeyValuePair pair in acceptedTypes) - { - // Log.AsyncY(pair.Key); - if (pair.Key == s) - { - try - { - //parse from Json Style - // Log.AsyncR("1"); - cObj = pair.Value.parse.Invoke(path); - if (cObj is CoreObject) - { - (cObj as CoreObject).thisLocation = Game1.getLocationFromName((cObj as CoreObject).locationsName); - if ((cObj as CoreObject).thisLocation == null) - { - try - { - Utilities.addItemToOtherInventory((chestObject as StardewValley.Objects.Chest).items, (cObj as CoreObject)); - - foreach (var v in (chestObject as StardewValley.Objects.Chest).items) - { - ModCore.ModMonitor.Log(v.Name); - } - - } - catch (Exception err) - { - ModCore.ModMonitor.Log(err.ToString(), LogLevel.Error); - } - // Log.AsyncY("ADDED ITEM TO INVENTORY"); - return; - } - else - { - (cObj as CoreObject).thisLocation.objects.Add((cObj as CoreObject).TileLocation, (StardewValley.Object)cObj); - thingsToAddBackIn.Add((cObj as CoreObject)); - //Util.placementAction(cObj, cObj.thisLocation,(int)cObj.tileLocation.X,(int) cObj.tileLocation.Y,null,false); - } - } - else - { - try - { - Utilities.addItemToOtherInventory((chestObject as StardewValley.Objects.Chest).items, cObj); - } - catch (Exception err) - { - ModCore.ModMonitor.Log(err.ToString(), LogLevel.Error); - } - } - - } - catch (Exception e) - { - ModCore.ModMonitor.Log(e.ToString()); - // Log.AsyncO(e); - } - } - } - } - else - { - ModCore.ModMonitor.Log("Error parsing unknown object type: " + s, LogLevel.Error); - } - - } - */ - - public void ProcessFileForCleanUpIntoContainer(string path, List thingsToAddBackIn) - { - - - - //Log.AsyncC(path); - string newLine = Environment.NewLine; - - string[] chestArray = path.Split(new string[] { "/" }, StringSplitOptions.None); - string[] chestArray2 = path.Split(new string[] { "\\" }, StringSplitOptions.None); - /* - foreach (var v in chestArray) - { - Log.AsyncC("PART OF PATH "+v); - } - foreach (var v in chestArray2) - { - Log.AsyncC("PART OF PATH2 " + v); - } - */ - if (chestArray2.Length > chestArray.Length) chestArray = chestArray2; - - GameLocation loc = Game1.getLocationFromName(chestArray[chestArray.Length - 3]); - string[] chest = chestArray[chestArray.Length - 2].Split(','); - StardewValley.Object chestObject; - bool f = loc.objects.TryGetValue(new Microsoft.Xna.Framework.Vector2(Convert.ToInt32(chest[1]), Convert.ToInt32(chest[2])), out chestObject); - - try - { - string type = ""; - int count = 0; - while (type == "" || type == null) - { - if (count == 0) - { - //THE ERROR LIES HERE AS IT THINKS IT CAN TRY TO BE A CORE OBJECT WHEN IT IS NOT!!!! - CoreObject core_obj = StardustCore.ModCore.ModHelper.ReadJsonFile(path); //FIND A WAY TO FIX THIS!!!! - type = (core_obj as CoreObject).serializationName; - //ModCore.ModMonitor.Log("UMM THIS CAN't BE RIGHT 1" + type); - } - - if (count == 1) - { - //THIS NEEDS TO BE SOMETHING GENERIC!!! - SerializedObjectBase core_obj = StardustCore.ModCore.ModHelper.ReadJsonFile(path); - type = (core_obj as SerializedObjectBase).SerializationName; - //ModCore.ModMonitor.Log("UMM THIS CAN't BE RIGHT 2" + type); - } - - if (count == 2) - { - ModCore.ModMonitor.Log("A valid type could not be found for the file: " + path); - return; - } - - count++; - } - - foreach (KeyValuePair pair in acceptedTypes) - { - // Log.AsyncY(pair.Key); - if (pair.Key == type) - { - try - { - //parse from Json Style - // Log.AsyncR("1"); - var cObj = pair.Value.parse.Invoke(path); - if (cObj is CoreObject) - { - (cObj as CoreObject).thisLocation = Game1.getLocationFromName((cObj as CoreObject).locationsName); - - if ((cObj as CoreObject).thisLocation == null) - { - Utilities.addItemToOtherInventory((chestObject as Chest).items, cObj); - // Log.AsyncY("ADDED ITEM TO INVENTORY"); - return; - } - else - { - (cObj as CoreObject).thisLocation.objects.Add((cObj as CoreObject).TileLocation, (StardewValley.Object)cObj); - thingsToAddBackIn.Add(cObj as CoreObject); - //Util.placementAction(cObj, cObj.thisLocation,(int)cObj.tileLocation.X,(int) cObj.tileLocation.Y,null,false); - } - } - else - { - Utilities.addItemToOtherInventory((chestObject as Chest).items, cObj); - } - } - catch (Exception e) - { - ModCore.ModMonitor.Log(e.ToString()); - // Log.AsyncO(e); - } - } - } - } - catch (Exception err) - { - ModCore.ModMonitor.Log(err.ToString()); - //Tool t = StardustCore.ModCore.ModHelper.ReadJsonFile(path); - } - - } - - - - -/// -/// ??? -/// -/// -/// -public string ParseXMLType(string path) - { - string[] s = File.ReadAllLines(path); - string returnString = ""; - foreach (string v in s) - { - // Log.AsyncC(v); - if (v.Contains("serializationName")) - { - returnString = v.Remove(0, 12); - returnString = returnString.Remove(returnString.Length - 11, 11); - } - - } - return returnString; - } - - /// - /// Parse rectangles. - /// - /// - /// - public static Microsoft.Xna.Framework.Rectangle parseRectFromJson(string s) - { - s = s.Replace('{', ' '); - s = s.Replace('}', ' '); - s = s.Replace('^', ' '); - s = s.Replace(':', ' '); - string[] parsed = s.Split(' '); - foreach (var v in parsed) - { - //Log.AsyncY(v); - } - return new Microsoft.Xna.Framework.Rectangle(Convert.ToInt32(parsed[2]), Convert.ToInt32(parsed[4]), Convert.ToInt32(parsed[6]), Convert.ToInt32(parsed[8])); - } - - /// - /// Remove all objects that there are a copy of this thing? - /// - /// - public void removeObjectWithCopy(CoreObject c) - { - foreach(var v in StardustCore.ModCore.SerializationManager.trackedObjectList) - { - if (v.getCustomType() == typeof(CoreObject)) - { - if (c.TileLocation == (v as CoreObject).TileLocation && c.thisLocation == (v as CoreObject).thisLocation) - { - StardustCore.ModCore.SerializationManager.trackedObjectList.Remove(v); - } - } - } - } - - /// - /// Initializes a list of default supported types added by Stardust Core. - /// - public void initializeDefaultSuportedTypes() - { - initializeSupportedToolTypes(); - initializeSupportedObjectTypes(); - } - - private void initializeSupportedObjectTypes() - { - this.acceptedTypes.Add(typeof(CoreObject).ToString(), new SerializerDataNode(CoreObject.Serialize, CoreObject.Deserialize, new SerializerDataNode.WorldParsingFunction(CoreObject.Serialize), new SerializerDataNode.SerializingToContainerFunction(CoreObject.SerializeToContainer))); - } - - /// - /// Initializes supported tools made by Stardust Core. - /// - private void initializeSupportedToolTypes() - { - this.acceptedTypes.Add(typeof(ExtendedAxe).ToString(), new SerializerDataNode(ExtendedAxe.Serialize, ExtendedAxe.Deserialize, null, new SerializerDataNode.SerializingToContainerFunction(ExtendedAxe.SerializeToContainer))); - } - - public static string getValidSavePathIfDuplicatesExist(Item I, string path, int number) - { - String savePath = path; - String fileName = I.Name + number + ".json"; - String resultPath = Path.Combine(savePath, fileName); - return resultPath; - } - } -} diff --git a/GeneralMods/StardustCore/Serialization/SerializerDataNode.cs b/GeneralMods/StardustCore/Serialization/SerializerDataNode.cs deleted file mode 100644 index 92c4a6d2..00000000 --- a/GeneralMods/StardustCore/Serialization/SerializerDataNode.cs +++ /dev/null @@ -1,73 +0,0 @@ -using StardewValley; -using StardustCore.Objects.Tools.SerializationInformation; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace StardustCore.Serialization -{ - /// - /// A class that handles saving/loading custom objects to and from the world. - /// - public class SerializerDataNode - { - /// - /// A function that handles loading an object back into it's Item form. - /// - /// The path to the file. - /// - public delegate Item ParsingFunction(string path); - /// - /// A function that handles saving an item. - /// - /// - public delegate void SerializingFunction(Item item); - - /// - /// A function that handles saving an item from/to a container. - /// - /// - /// - public delegate void SerializingToContainerFunction(Item item, string s); - - /// - /// A function that handles saving.loading items into the world. - /// - /// - public delegate void WorldParsingFunction(Item obj); - - /// - /// Saves an object to an inventory. - /// - public SerializingFunction serialize; - /// - /// Saves an object to a container - /// - public SerializingToContainerFunction serializeToContainer; - /// - /// Loads in an object. - /// - public ParsingFunction parse; - /// - /// Loads in an object to the game world. - /// - public WorldParsingFunction worldObj; - - /// - /// Constructor. - /// - /// A function to be ran to save this object. - /// A function to be ran to load this object. - /// A function to be ran to load this object to the world. - /// A function to be ran to save/load objects to storage containers such as chests. - public SerializerDataNode(SerializingFunction serializeFunction, ParsingFunction parsingFunction, WorldParsingFunction worldObjectParsingFunction, SerializingToContainerFunction containerSerializationFunction) - { - serialize = serializeFunction; - parse = parsingFunction; - worldObj = worldObjectParsingFunction; - serializeToContainer = containerSerializationFunction; - } - } -} diff --git a/GeneralMods/StardustCore/StardustCore.csproj b/GeneralMods/StardustCore/StardustCore.csproj index 5a69ed44..b0f3c63b 100644 --- a/GeneralMods/StardustCore/StardustCore.csproj +++ b/GeneralMods/StardustCore/StardustCore.csproj @@ -87,35 +87,10 @@ - - - - - - - - - - - - - - - - - - - - - - - - - @@ -130,18 +105,13 @@ - - - - - diff --git a/GeneralMods/StardustCore/Utilities.cs b/GeneralMods/StardustCore/Utilities.cs deleted file mode 100644 index efdabb01..00000000 --- a/GeneralMods/StardustCore/Utilities.cs +++ /dev/null @@ -1,673 +0,0 @@ - -using Microsoft.Xna.Framework; -using Netcode; -using StardewModdingAPI; -using StardewValley; -using StardewValley.Characters; -using StardewValley.Locations; -using StardewValley.Objects; -using StardewValley.TerrainFeatures; -using StardewValley.Tools; -using StardustCore; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using xTile.Dimensions; - -namespace StardustCore -{ - - - public class Utilities - { - - public static List masterRemovalList = new List(); - - - public static string getShortenedDirectory(string modName,string path) - { - string lol = (string)path.Clone(); - string[] spliter = lol.Split(new string[] { modName }, StringSplitOptions.None); - return spliter[1]; - } - - public static string getShortenedDirectory(IModHelper modHelper, string path) - { - string lol = (string)path.Clone(); - string[] spliter = lol.Split(new string[] { modHelper.DirectoryPath }, StringSplitOptions.None); - return spliter[1]; - } - - public static int sellToStorePrice(CoreObject c) - { - return (int)((double)c.Price * (1.0 + (double)c.Quality * 0.25)); - } - - - - /// - /// Create some object debris at my game location. - /// - /// - /// - /// - /// - /// - /// - /// - public static void createObjectDebris(int objectIndex, int xTile, int yTile, int groundLevel = -1, int itemQuality = 0, float velocityMultiplyer = 1f, GameLocation location = null) - { - if (location == null) - location = Game1.currentLocation; - Debris debris = new Debris(objectIndex, new Vector2((float)(xTile * 64 + 32), (float)(yTile * 64 + 32)), new Vector2((float)Game1.player.getStandingX(), (float)Game1.player.getStandingY())) - { - itemQuality = itemQuality - }; - foreach (Chunk chunk in (IEnumerable)debris.Chunks) - { - chunk.xVelocity.Value *= (float)(double)velocityMultiplyer; - chunk.yVelocity.Value *= (float)(double)velocityMultiplyer; - } - if (groundLevel != -1) - debris.chunkFinalYLevel = groundLevel; - location.debris.Add(debris); - } - - - - /// - /// Place a core object into a game location. - /// - /// - /// - /// - /// - /// - /// - /// - /// - public static bool placementAction(CoreObject cObj, GameLocation location, int x, int y,Serialization.SerializationManager s, StardewValley.Farmer who = null, bool playSound = true) - { - Vector2 vector = new Vector2((float)(x / Game1.tileSize), (float)(y / Game1.tileSize)); - // cObj.health = 10; - if (who != null) - { - if (cObj == null) - { - StardustCore.ModCore.ModMonitor.Log("WHY IS MY COMPONENT NULL???"); - } - cObj.owner.Value = who.UniqueMultiplayerID; - } - else - { - cObj.owner.Value = Game1.player.UniqueMultiplayerID; - } - - int num = cObj.ParentSheetIndex; - if (num <= 130) - { - if (num == 71) - { - if (location is MineShaft) - { - if ((location as MineShaft).mineLevel != 120 && (location as MineShaft).recursiveTryToCreateLadderDown(vector, "hoeHit", 16)) - { - return true; - } - Game1.showRedMessage("Unsuitable Location"); - } - return false; - } - if (num == 130) - { - if (location.objects.ContainsKey(vector) || Game1.currentLocation is MineShaft) - { - Game1.showRedMessage("Unsuitable Location"); - return false; - } - location.objects.Add(vector, new Chest(true) - { - shakeTimer = 50 - }); - Game1.playSound("axe"); - return true; - } - } - else - { - switch (num) - { - case 143: - case 144: - case 145: - case 146: - case 147: - case 148: - case 149: - case 150: - case 151: - if (location.objects.ContainsKey(vector)) - { - return false; - } - new Torch(vector, cObj.ParentSheetIndex, true) - { - shakeTimer = 25 - }.placementAction(location, x, y, who); - return true; - default: - if (num == 163) - { - location.objects.Add(vector, new Cask(vector)); - Game1.playSound("hammer"); - } - break; - } - } - - if (cObj.name.Equals("Tapper")) - { - if (location.terrainFeatures.ContainsKey(vector) && location.terrainFeatures[vector] is Tree && (location.terrainFeatures[vector] as Tree).growthStage.Value >= 5 && !(location.terrainFeatures[vector] as Tree).stump.Value && !location.objects.ContainsKey(vector)) - { - cObj.TileLocation = vector; - location.objects.Add(vector, cObj); - int treeType = (location.terrainFeatures[vector] as Tree).treeType.Value; - (location.terrainFeatures[vector] as Tree).tapped.Value = true; - switch (treeType) - { - case 1: - cObj.heldObject.Value = new StardewValley.Object(725, 1, false, -1, 0); - cObj.MinutesUntilReady = 13000 - Game1.timeOfDay; - break; - case 2: - cObj.heldObject.Value = new StardewValley.Object(724, 1, false, -1, 0); - cObj.MinutesUntilReady = 16000 - Game1.timeOfDay; - break; - case 3: - cObj.heldObject.Value = new StardewValley.Object(726, 1, false, -1, 0); - cObj.MinutesUntilReady = 10000 - Game1.timeOfDay; - break; - case 7: - cObj.heldObject.Value = new StardewValley.Object(420, 1, false, -1, 0); - cObj.MinutesUntilReady = 3000 - Game1.timeOfDay; - if (!Game1.currentSeason.Equals("fall")) - { - cObj.heldObject.Value = new StardewValley.Object(404, 1, false, -1, 0); - cObj.MinutesUntilReady = 6000 - Game1.timeOfDay; - } - break; - } - Game1.playSound("axe"); - return true; - } - return false; - } - else if (cObj.name.Contains("Sapling")) - { - Vector2 key = default(Vector2); - for (int i = x / Game1.tileSize - 2; i <= x / Game1.tileSize + 2; i++) - { - for (int j = y / Game1.tileSize - 2; j <= y / Game1.tileSize + 2; j++) - { - key.X = (float)i; - key.Y = (float)j; - if (location.terrainFeatures.ContainsKey(key) && (location.terrainFeatures[key] is Tree || location.terrainFeatures[key] is FruitTree)) - { - Game1.showRedMessage("Too close to another tree"); - return false; - } - } - } - if (location.terrainFeatures.ContainsKey(vector)) - { - if (!(location.terrainFeatures[vector] is HoeDirt) || (location.terrainFeatures[vector] as HoeDirt).crop != null) - { - return false; - } - location.terrainFeatures.Remove(vector); - } - if (location is Farm && (location.doesTileHaveProperty((int)vector.X, (int)vector.Y, "Diggable", "Back") != null || location.doesTileHavePropertyNoNull((int)vector.X, (int)vector.Y, "Type", "Back").Equals("Grass"))) - { - Game1.playSound("dirtyHit"); - DelayedAction.playSoundAfterDelay("coin", 100); - location.terrainFeatures.Add(vector, new FruitTree(cObj.ParentSheetIndex)); - return true; - } - Game1.showRedMessage("Can't be planted here."); - return false; - } - else - { - - //Game1.showRedMessage("STEP 1"); - - if (cObj.Category == -74) - { - return true; - } - if (!cObj.performDropDownAction(who)) - { - CoreObject @object = cObj; - @object.shakeTimer = 50; - @object.TileLocation = vector; - @object.performDropDownAction(who); - if (location.objects.ContainsKey(vector)) - { - if (location.objects[vector].ParentSheetIndex != cObj.ParentSheetIndex) - { - Game1.createItemDebris(location.objects[vector], vector * (float)Game1.tileSize, Game1.random.Next(4)); - location.objects[vector] = @object; - } - } - - else - { - // Game1.showRedMessage("STEP 2"); - //ModCore.ModMonitor.Log(vector.ToString()); - - Vector2 newVec = new Vector2(vector.X, vector.Y); - // cObj.boundingBox.Inflate(32, 32); - location.objects.Add(newVec, cObj); - } - @object.initializeLightSource(vector); - } - if (playSound == true) Game1.playSound("woodyStep"); - else - { - ModCore.ModMonitor.Log("restoring item from file"); - } - //Log.AsyncM("Placed and object"); - cObj.locationsName = location.Name; - s.trackedObjectList.Add(cObj); - return true; - - } - } - - - public static bool addItemToInventoryAndCleanTrackedList(CoreObject I,Serialization.SerializationManager s) - { - if (Game1.player.isInventoryFull() == false) - { - Game1.player.addItemToInventoryBool(I, false); - s.trackedObjectList.Remove(I); - return true; - } - else - { - Random random = new Random(129); - int i = random.Next(); - i = i % 4; - Vector2 v2 = new Vector2(Game1.player.getTileX() * Game1.tileSize, Game1.player.getTileY() * Game1.tileSize); - Game1.createItemDebris(I, v2, i); - return false; - } - } - - - public static Microsoft.Xna.Framework.Rectangle parseRectFromJson(string s) - { - - - - s = s.Replace('{', ' '); - s = s.Replace('}', ' '); - s = s.Replace('^', ' '); - s = s.Replace(':', ' '); - string[] parsed = s.Split(' '); - foreach (var v in parsed) - { - //Log.AsyncY(v); - } - return new Microsoft.Xna.Framework.Rectangle(Convert.ToInt32(parsed[2]), Convert.ToInt32(parsed[4]), Convert.ToInt32(parsed[6]), Convert.ToInt32(parsed[8])); - } - - /// - /// Add an object to a list fo items. - /// - /// - /// - /// - public static bool addItemToOtherInventory(List inventory, Item I) - { - if (I == null) return false; - if (isInventoryFull(inventory) == false) - { - if (inventory == null) - { - return false; - } - if (inventory.Count == 0) - { - inventory.Add(I); - return true; - } - for (int i = 0; i < inventory.Capacity; i++) - { - // Log.AsyncC("OK????"); - - foreach (var v in inventory) - { - - if (inventory.Count == 0) - { - addItemToOtherInventory(inventory, I); - return true; - } - if (v == null) continue; - if (v.canStackWith(I)) - { - v.addToStack(I.getStack()); - return true; - } - } - } - - inventory.Add(I); - return true; - } - else - { - return false; - } - } - - - /// - /// Add an object to a netList of items. - /// - /// - /// - /// - public static bool addItemToOtherInventory(NetObjectList inventory, Item I) - { - if (I == null) return false; - if (isInventoryFull(inventory) == false) - { - if (inventory == null) - { - return false; - } - if (inventory.Count == 0) - { - inventory.Add(I); - return true; - } - for (int i = 0; i < inventory.Capacity; i++) - { - // Log.AsyncC("OK????"); - - foreach (var v in inventory) - { - - if (inventory.Count == 0) - { - addItemToOtherInventory(inventory, I); - return true; - } - if (v == null) continue; - if (v.canStackWith(I)) - { - v.addToStack(I.getStack()); - return true; - } - } - } - - inventory.Add(I); - return true; - } - else - { - return false; - } - } - - /// - /// Checks whether or not the inventory list is full of items. - /// - /// - /// - /// - public static bool isInventoryFull(List inventory, bool logInfo = false) - { - if (logInfo) - { - ModCore.ModMonitor.Log("size " + inventory.Count); - ModCore.ModMonitor.Log("max " + inventory.Capacity); - } - - if (inventory.Count == inventory.Capacity) return true; - else return false; - } - - - - - /// - /// Checks whether or not the net inventory list is full of items. - /// - /// - /// - /// - public static bool isInventoryFull(NetObjectList inventory, bool logInfo = false) - { - if (logInfo) - { - ModCore.ModMonitor.Log("size " + inventory.Count); - ModCore.ModMonitor.Log("max " + inventory.Capacity); - } - - if (inventory.Count == inventory.Capacity) return true; - else return false; - } - - - public static bool isWithinRange(int tileLength,Vector2 positionToCheck) - { - Vector2 v = Game1.player.getTileLocation(); - if (v.X < positionToCheck.X - tileLength || v.X > positionToCheck.X + tileLength) return false; - if (v.Y < positionToCheck.Y - tileLength || v.Y > positionToCheck.Y + tileLength) return false; - - return true; - } - - public static bool isWithinDirectionRange(int direction,int range, Vector2 positionToCheck) - { - Vector2 v = Game1.player.getTileLocation(); - if (direction==3 && (v.X >= positionToCheck.X - range)) return true; //face left - if (direction==1 && (v.X <= positionToCheck.X + range)) return true; //face right - if (direction==0 && (v.Y <= positionToCheck.Y + range)) return true; //face up - if (direction==2 && (v.Y >= positionToCheck.Y - range)) return true; //face down - - return true; - } - - - - /// - /// Draws the green mouse cursor plus sign. - /// - public static void drawGreenPlus() - { - try - { - Game1.spriteBatch.Draw(Game1.mouseCursors, new Vector2(Game1.getMouseX() + 34, Game1.getMouseY() + 34), new Microsoft.Xna.Framework.Rectangle(0, 410, 17, 17), Color.White, 0, new Vector2(0, 0), 2f, Microsoft.Xna.Framework.Graphics.SpriteEffects.None, 0); - } - catch(Exception e) - { - e.ToString(); - } - } - - - public static StardewValley.Object checkRadiusForObject(int radius, string name) - { - for (int x = -radius; x <= radius; x++) - { - for (int y = -radius; y <= radius; y++) - { - bool f = Game1.player.currentLocation.isObjectAt((Game1.player.getTileX() + x) * Game1.tileSize, (Game1.player.getTileY() + y) * Game1.tileSize); - if (f == false) continue; - StardewValley.Object obj = Game1.player.currentLocation.getObjectAt((Game1.player.getTileX() + x) * Game1.tileSize, (Game1.player.getTileY() + y) * Game1.tileSize); - if (obj == null) continue; - if (obj.name == name) - { - return obj; - } - } - } - return null; - } - - public static StardewValley.Object checkCardinalForObject(string name) - { - for (int x = -1; x <= 1; x++) - { - for (int y = -1; y <= 1; y++) - { - if (x == -1 && y == -1) continue; //upper left - if (x == -1 && y == 1) continue; //bottom left - if (x == 1 && y == -1) continue; //upper right - if (x == 1 && y == 1) continue; //bottom right - bool f = Game1.player.currentLocation.isObjectAt((Game1.player.getTileX() + x) * Game1.tileSize, (Game1.player.getTileY() + y) * Game1.tileSize); - if (f == false) continue; - StardewValley.Object obj = Game1.player.currentLocation.getObjectAt((Game1.player.getTileX() + x) * Game1.tileSize, (Game1.player.getTileY() + y) * Game1.tileSize); - if (obj == null) continue; - if (obj.name == name) - { - return obj; - } - } - } - return null; - } - - public static void faceDirectionTowardsSomething(Vector2 tileLocation) - { - - if (tileLocation.X < Game1.player.getTileX()) - { - Game1.player.faceDirection(3); - } - else if (tileLocation.X > Game1.player.getTileX()) - { - Game1.player.faceDirection(1); - } - else if (tileLocation.Y < Game1.player.getTileY()) - { - Game1.player.faceDirection(0); - } - else if (tileLocation.Y > Game1.player.getTileY()) - { - Game1.player.faceDirection(2); - } - } - - /// - /// Checks if a game location contains an object with the exact name passed in. - /// - /// The location to check. - /// The name of the object to check. - /// - public static bool doesLocationContainObject(GameLocation location, string name) - { - foreach (KeyValuePair v in location.objects.Pairs) - { - if (name == v.Value.name) return true; - } - return false; - } - - - public static KeyValuePair checkRadiusForTerrainFeature(int radius, Type terrainType) - { - for (int x = -radius; x <= radius; x++) - { - for (int y = -radius; y <= radius; y++) - { - Vector2 pos = new Vector2((Game1.player.getTileX() + x), (Game1.player.getTileY() + y)); - bool f = Game1.player.currentLocation.isTerrainFeatureAt((int)pos.X,(int)pos.Y); - if (f == false) continue; - TerrainFeature t = Game1.player.currentLocation.terrainFeatures[pos]; //((Game1.player.getTileX() + x) * Game1.tileSize, (Game1.player.getTileY() + y) * Game1.tileSize); - if (t == null) continue; - if (t.GetType() == terrainType) - { - return new KeyValuePair (pos,t); - } - } - } - return new KeyValuePair(new Vector2(),null); - } - - public static KeyValuePair checkCardinalForTerrainFeature(Type terrainType) - { - for (int x = -1; x <= 1; x++) - { - for (int y = -1; y <= 1; y++) - { - if (x == -1 && y == -1) continue; //upper left - if (x == -1 && y == 1) continue; //bottom left - if (x == 1 && y == -1) continue; //upper right - if (x == 1 && y == 1) continue; //bottom right - Vector2 pos = new Vector2((Game1.player.getTileX() + x), (Game1.player.getTileY() + y)); - bool f = Game1.player.currentLocation.isTerrainFeatureAt((int)pos.X, (int)pos.Y); - if (f == false) continue; - TerrainFeature t = Game1.player.currentLocation.terrainFeatures[pos]; //((Game1.player.getTileX() + x) * Game1.tileSize, (Game1.player.getTileY() + y) * Game1.tileSize); - if (t == null) continue; - if (t.GetType() == terrainType) - { - return new KeyValuePair(pos, t); - } - } - } - return new KeyValuePair(new Vector2(), null); - } - - - /// - /// Checks if the game location has this terrain feature. - /// - /// The game location to check. - /// The terrain feature type to check if it exists at said location. - /// - public static bool doesLocationContainTerrainFeature(GameLocation location, Type terrain) - { - foreach (KeyValuePair v in location.terrainFeatures.Pairs) - { - if (terrain == v.Value.GetType()) return true; - } - return false; - } - - /// - /// Get an item from the player's inventory. - /// - /// The index in the player's inventory of the item. - /// - public static Item getItemFromInventory(int index) - { - foreach(var v in Game1.player.Items) - { - if (v.ParentSheetIndex == index) return v; - } - return null; - } - - /// - /// Get an item from the player's inventory. - /// - /// The name of the item in the player's inventory - /// - public static Item getItemFromInventory(string name) - { - foreach (var v in Game1.player.Items) - { - if (v.Name == name) return v; - } - return null; - } - } -}