From 5256b738b486aa1591c6b25b41410973f1feaf46 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Mon, 2 Aug 2021 21:14:22 -0400 Subject: use more reliable method to get save folder name SMAPI now tracks the actual folder name being loaded to avoid edge cases where the folder name doesn't match the save ID. --- src/SMAPI/Constants.cs | 31 ++++---------------- src/SMAPI/Framework/SCore.cs | 8 ++++++ src/SMAPI/Patches/SaveGamePatcher.cs | 55 ++++++++++++++++++++++++++++++++++++ 3 files changed, 69 insertions(+), 25 deletions(-) create mode 100644 src/SMAPI/Patches/SaveGamePatcher.cs (limited to 'src') diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs index 3877e17a..bfaee70e 100644 --- a/src/SMAPI/Constants.cs +++ b/src/SMAPI/Constants.cs @@ -1,7 +1,6 @@ using System; using System.Collections.Generic; using System.IO; -using System.Linq; using System.Reflection; using StardewModdingAPI.Enums; using StardewModdingAPI.Framework; @@ -165,6 +164,9 @@ namespace StardewModdingAPI /// The language code for non-translated mod assets. internal static LocalizedContentManager.LanguageCode DefaultLanguage { get; } = LocalizedContentManager.LanguageCode.en; + /// The name of the last save file loaded by the game. + internal static string LastRawSaveFileName { get; set; } + /********* ** Internal methods @@ -341,30 +343,9 @@ namespace StardewModdingAPI if (Context.LoadStage == LoadStage.None) return null; - // get basic info - string rawSaveName = Game1.GetSaveGameName(set_value: false); - ulong saveID = Context.LoadStage == LoadStage.SaveParsed - ? SaveGame.loaded.uniqueIDForThisGame - : Game1.uniqueIDForThisGame; - - // get best match (accounting for rare case where folder name isn't sanitized) - DirectoryInfo folder = null; - foreach (string saveName in new[] { rawSaveName, new string(rawSaveName.Where(char.IsLetterOrDigit).ToArray()) }) - { - try - { - folder = new DirectoryInfo(Path.Combine(Constants.SavesPath, $"{saveName}_{saveID}")); - if (folder.Exists) - return folder; - } - catch (ArgumentException) - { - // ignore invalid path - } - } - - // if save doesn't exist yet, return the default one we expect to be created - return folder; + // get save + string rawSaveName = Constants.LastRawSaveFileName; + return new DirectoryInfo(Path.Combine(Constants.SavesPath, rawSaveName)); } } } diff --git a/src/SMAPI/Framework/SCore.cs b/src/SMAPI/Framework/SCore.cs index a34b3eff..b826789d 100644 --- a/src/SMAPI/Framework/SCore.cs +++ b/src/SMAPI/Framework/SCore.cs @@ -257,6 +257,7 @@ namespace StardewModdingAPI.Framework MiniMonoModHotfix.Apply(); HarmonyPatcher.Apply("SMAPI", this.Monitor, new Game1Patcher(this.Reflection, this.OnLoadStageChanged), + new SaveGamePatcher(this.OnSaveFileReading), new TitleMenuPatcher(this.OnLoadStageChanged) ); @@ -1101,6 +1102,13 @@ namespace StardewModdingAPI.Framework this.EventManager.ReturnedToTitle.RaiseEmpty(); } + /// Raised before the game begins reading a save file. + /// The save folder name. + internal void OnSaveFileReading(string fileName) + { + Constants.LastRawSaveFileName = fileName; + } + /// Apply fixes to the save after it's loaded. private void ApplySaveFixes() { diff --git a/src/SMAPI/Patches/SaveGamePatcher.cs b/src/SMAPI/Patches/SaveGamePatcher.cs new file mode 100644 index 00000000..969c514e --- /dev/null +++ b/src/SMAPI/Patches/SaveGamePatcher.cs @@ -0,0 +1,55 @@ +using System; +using System.Diagnostics.CodeAnalysis; +using HarmonyLib; +using StardewModdingAPI.Internal.Patching; +using StardewValley; +using StardewValley.Menus; + +namespace StardewModdingAPI.Patches +{ + /// Harmony patches for which track the last loaded save ID. + /// Patch methods must be static for Harmony to work correctly. See the Harmony documentation before renaming patch arguments. + [SuppressMessage("ReSharper", "InconsistentNaming", Justification = "Argument names are defined by Harmony and methods are named for clarity.")] + [SuppressMessage("ReSharper", "IdentifierTypo", Justification = "Argument names are defined by Harmony and methods are named for clarity.")] + internal class SaveGamePatcher : BasePatcher + { + /********* + ** Fields + *********/ + /// A callback to invoke when a save file is being loaded. + private static Action OnSaveFileReading; + + + /********* + ** Public methods + *********/ + /// Construct an instance. + /// A callback to invoke when a save file is being loaded. + public SaveGamePatcher(Action onSaveFileReading) + { + SaveGamePatcher.OnSaveFileReading = onSaveFileReading; + } + + /// + public override void Apply(Harmony harmony, IMonitor monitor) + { + harmony.Patch( + original: this.RequireMethod(nameof(SaveGame.getLoadEnumerator)), + prefix: this.GetHarmonyMethod(nameof(SaveGamePatcher.Before_GetLoadEnumerator)) + ); + } + + + /********* + ** Private methods + *********/ + /// The method to call before . + /// Returns whether to execute the original method. + /// This method must be static for Harmony to work correctly. See the Harmony documentation before renaming arguments. + private static bool Before_GetLoadEnumerator(string file) + { + SaveGamePatcher.OnSaveFileReading(file); + return true; + } + } +} -- cgit From 848460a34e105f08dec506e97655de7f30c6a493 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Mon, 2 Aug 2021 21:30:59 -0400 Subject: update compatibility list --- docs/release-notes.md | 3 +++ src/SMAPI.Web/wwwroot/SMAPI.metadata.json | 9 +++++++++ 2 files changed, 12 insertions(+) (limited to 'src') diff --git a/docs/release-notes.md b/docs/release-notes.md index eeff3347..460b64fb 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,6 +2,9 @@ # Release notes ## Upcoming release +* For players: + * Updated compatibility list. + * For mod authors: * Fixed save constants not set correctly in edge cases where the folder name doesn't match the save ID. diff --git a/src/SMAPI.Web/wwwroot/SMAPI.metadata.json b/src/SMAPI.Web/wwwroot/SMAPI.metadata.json index eeda13eb..b38c1f7a 100644 --- a/src/SMAPI.Web/wwwroot/SMAPI.metadata.json +++ b/src/SMAPI.Web/wwwroot/SMAPI.metadata.json @@ -167,6 +167,15 @@ "~ | StatusReasonPhrase": "split-screen mode was added in Stardew Valley 1.5" }, + /********* + ** Broke in SMAPI 3.12.0 + *********/ + "Stardew Hack": { + "ID": "bcmpinc.StardewHack", + "~5.0.0 | Status": "AssumeBroken", + "~5.0.0 | StatusReasonDetails": "causes Harmony patching errors for other mods" + }, + /********* ** Broke in SDV 1.5 (Content Patcher packs) *********/ -- cgit From cf261ff36ee0c96acd0a8b0b233517991740b8cf Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Tue, 3 Aug 2021 12:00:15 -0400 Subject: increase software conflict message to warning level to simplify troubleshooting --- docs/release-notes.md | 5 +++-- src/SMAPI/Framework/SCore.cs | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/docs/release-notes.md b/docs/release-notes.md index 460b64fb..8e354585 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -3,13 +3,14 @@ # Release notes ## Upcoming release * For players: + * The software conflict message added in SMAPI 3.11.0 now appears as a warning to simplify troubleshooting. * Updated compatibility list. * For mod authors: - * Fixed save constants not set correctly in edge cases where the folder name doesn't match the save ID. + * Fixed `Constants.Save*` fields incorrect if the save's folder name and ID don't match. ## 3.12.0 -01 August 2021 for Stardew Valley 1.5.4 or later. See [release highlights](https://www.patreon.com/posts/54388616). +Released 01 August 2021 for Stardew Valley 1.5.4 or later. See [release highlights](https://www.patreon.com/posts/54388616). * For players: * Added save recovery when content mods leave null objects in the save (in _Error Handler_). diff --git a/src/SMAPI/Framework/SCore.cs b/src/SMAPI/Framework/SCore.cs index b826789d..3f97bd4e 100644 --- a/src/SMAPI/Framework/SCore.cs +++ b/src/SMAPI/Framework/SCore.cs @@ -1323,7 +1323,7 @@ namespace StardewModdingAPI.Framework .ToArray(); if (installedNames.Any()) - this.Monitor.Log($" Found {string.Join(" and ", installedNames)} installed, which can conflict with SMAPI. If you experience errors or crashes, try disabling that software or adding an exception for SMAPI / Stardew Valley."); + this.Monitor.Log($"Found {string.Join(" and ", installedNames)} installed, which may conflict with SMAPI. If you experience errors or crashes, try disabling that software or adding an exception for SMAPI and Stardew Valley.", LogLevel.Warn); else this.Monitor.Log(" None found!"); } -- cgit From ef1eff669d8a6a277c12c0b84e16402de7f026d4 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Tue, 3 Aug 2021 13:05:48 -0400 Subject: update compatibility list --- src/SMAPI.Web/wwwroot/SMAPI.metadata.json | 52 ++++++++++++++++++++++++------- 1 file changed, 40 insertions(+), 12 deletions(-) (limited to 'src') diff --git a/src/SMAPI.Web/wwwroot/SMAPI.metadata.json b/src/SMAPI.Web/wwwroot/SMAPI.metadata.json index b38c1f7a..a5cfadb4 100644 --- a/src/SMAPI.Web/wwwroot/SMAPI.metadata.json +++ b/src/SMAPI.Web/wwwroot/SMAPI.metadata.json @@ -175,6 +175,46 @@ "~5.0.0 | Status": "AssumeBroken", "~5.0.0 | StatusReasonDetails": "causes Harmony patching errors for other mods" }, + "Always Scroll Map": { + "ID": "bcmpinc.AlwaysScrollMap", + "~4.1.0 | Status": "AssumeBroken", + "~4.1.0 | StatusReasonDetails": "causes Harmony patching errors for other mods" // requested by the mod author + }, + "Fix Animal Tools": { + "ID": "bcmpinc.FixAnimalTools", + "~4.1.0 | Status": "AssumeBroken", + "~4.1.0 | StatusReasonDetails": "causes Harmony patching errors for other mods" // requested by the mod author + }, + "Harvest With Scythe (bcmpinc)": { + "ID": "bcmpinc.HarvestWithScythe", + "~4.1.0 | Status": "AssumeBroken", + "~4.1.0 | StatusReasonDetails": "causes Harmony patching errors for other mods" // requested by the mod author + }, + "Grass Growth": { + "ID": "bcmpinc.GrassGrowth", + "~4.1.0 | Status": "AssumeBroken", + "~4.1.0 | StatusReasonDetails": "causes Harmony patching errors for other mods" // requested by the mod author + }, + "Tilled Soil Decay": { + "ID": "bcmpinc.TilledSoilDecay", + "~4.1.0 | Status": "AssumeBroken", + "~4.1.0 | StatusReasonDetails": "causes Harmony patching errors for other mods" // requested by the mod author + }, + "Movement Speed": { + "ID": "bcmpinc.MovementSpeed", + "~4.1.0 | Status": "AssumeBroken", + "~4.1.0 | StatusReasonDetails": "causes Harmony patching errors for other mods" // requested by the mod author + }, + "Tree Spread": { + "ID": "bcmpinc.TreeSpread", + "~4.2.0 | Status": "AssumeBroken", + "~4.2.0 | StatusReasonDetails": "causes Harmony patching errors for other mods" // requested by the mod author + }, + "Wear More Rings": { + "ID": "bcmpinc.WearMoreRings", + "~4.1.0 | Status": "AssumeBroken", + "~4.1.0 | StatusReasonDetails": "causes Harmony patching errors for other mods" // requested by the mod author + }, /********* ** Broke in SDV 1.5 (Content Patcher packs) @@ -231,18 +271,6 @@ "~1.0.8 | StatusReasonDetails": "crashes on save load" }, - "Movement Speed": { - "ID": "bcmpinc.MovementSpeed", - "~3.0.0 | Status": "AssumeBroken", - "~3.0.0 | StatusReasonDetails": "broken due to transpiler errors" - }, - - "Tree Spread": { - "ID": "bcmpinc.TreeSpread", - "~3.0.0 | Status": "AssumeBroken", - "~3.0.0 | StatusReasonDetails": "broken due to transpiler errors" - }, - "TreeTransplant": { "ID": "TreeTransplant", "~1.0.9 | Status": "AssumeBroken", -- cgit From 6b0d13be7c8383785cc3152d502959b15468b234 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Tue, 3 Aug 2021 19:03:51 -0400 Subject: fix Mono.Cecil failing to resolve references to SMAPI in some edge cases --- docs/release-notes.md | 1 + src/SMAPI/Framework/ModLoading/AssemblyLoader.cs | 1 + 2 files changed, 2 insertions(+) (limited to 'src') diff --git a/docs/release-notes.md b/docs/release-notes.md index 8e354585..22eecc3a 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -4,6 +4,7 @@ ## Upcoming release * For players: * The software conflict message added in SMAPI 3.11.0 now appears as a warning to simplify troubleshooting. + * Fixed error loading older Harmony mods for some players who launch the unofficial 64-bit Stardew Valley through Steam. * Updated compatibility list. * For mod authors: diff --git a/src/SMAPI/Framework/ModLoading/AssemblyLoader.cs b/src/SMAPI/Framework/ModLoading/AssemblyLoader.cs index 3606eb66..2b71038a 100644 --- a/src/SMAPI/Framework/ModLoading/AssemblyLoader.cs +++ b/src/SMAPI/Framework/ModLoading/AssemblyLoader.cs @@ -61,6 +61,7 @@ namespace StardewModdingAPI.Framework.ModLoading this.AssemblyDefinitionResolver = this.TrackForDisposal(new AssemblyDefinitionResolver()); this.AssemblyDefinitionResolver.AddSearchDirectory(Constants.ExecutionPath); this.AssemblyDefinitionResolver.AddSearchDirectory(Constants.InternalFilesPath); + this.AssemblyDefinitionResolver.Add(AssemblyDefinition.ReadAssembly(typeof(SGame).Assembly.Location)); // for some reason Mono.Cecil can't resolve SMAPI in very specific cases involving unofficial 64-bit Stardew Valley when launched through Steam (for some players only) // generate type => assembly lookup for types which should be rewritten this.TypeAssemblies = new Dictionary(); -- cgit From e73f5a10c7682719ea2e5d0805125010f69e896c Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Tue, 3 Aug 2021 19:04:15 -0400 Subject: add PlatoTK to compatibility list --- src/SMAPI.Web/wwwroot/SMAPI.metadata.json | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src') diff --git a/src/SMAPI.Web/wwwroot/SMAPI.metadata.json b/src/SMAPI.Web/wwwroot/SMAPI.metadata.json index a5cfadb4..7dff16c4 100644 --- a/src/SMAPI.Web/wwwroot/SMAPI.metadata.json +++ b/src/SMAPI.Web/wwwroot/SMAPI.metadata.json @@ -170,6 +170,11 @@ /********* ** Broke in SMAPI 3.12.0 *********/ + "PlatoTK": { + "ID": "Platonymous.PlatoTK", + "~1.9.3 | Status": "AssumeBroken", + "~1.9.3 | StatusReasonDetails": "fails to load with 'ReflectionTypeLoadException' error" + }, "Stardew Hack": { "ID": "bcmpinc.StardewHack", "~5.0.0 | Status": "AssumeBroken", -- cgit From 1bb51b2c41bf5acdffb8e25c37187e9bdf9d3dd4 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Tue, 3 Aug 2021 19:11:26 -0400 Subject: prepare for release --- build/common.targets | 2 +- docs/release-notes.md | 8 +++++--- src/SMAPI.Mods.ConsoleCommands/manifest.json | 4 ++-- src/SMAPI.Mods.ErrorHandler/manifest.json | 4 ++-- src/SMAPI.Mods.SaveBackup/manifest.json | 4 ++-- src/SMAPI/Constants.cs | 2 +- 6 files changed, 13 insertions(+), 11 deletions(-) (limited to 'src') diff --git a/build/common.targets b/build/common.targets index d526a2bb..f2614998 100644 --- a/build/common.targets +++ b/build/common.targets @@ -1,7 +1,7 @@ - 3.12.0 + 3.12.1 SMAPI latest $(AssemblySearchPaths);{GAC} diff --git a/docs/release-notes.md b/docs/release-notes.md index 22eecc3a..16744b24 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,10 +1,12 @@ ← [README](README.md) # Release notes -## Upcoming release +## 3.12.1 +Released 03 August 2021 for Stardew Valley 1.5.4 or later. + * For players: - * The software conflict message added in SMAPI 3.11.0 now appears as a warning to simplify troubleshooting. - * Fixed error loading older Harmony mods for some players who launch the unofficial 64-bit Stardew Valley through Steam. + * The software conflict message is now shown as a warning to simplify troubleshooting. + * Fixed error loading older Harmony mods for some Windows players using unofficial 64-bit Stardew Valley. * Updated compatibility list. * For mod authors: diff --git a/src/SMAPI.Mods.ConsoleCommands/manifest.json b/src/SMAPI.Mods.ConsoleCommands/manifest.json index 09684f32..7023180b 100644 --- a/src/SMAPI.Mods.ConsoleCommands/manifest.json +++ b/src/SMAPI.Mods.ConsoleCommands/manifest.json @@ -1,9 +1,9 @@ { "Name": "Console Commands", "Author": "SMAPI", - "Version": "3.12.0", + "Version": "3.12.1", "Description": "Adds SMAPI console commands that let you manipulate the game.", "UniqueID": "SMAPI.ConsoleCommands", "EntryDll": "ConsoleCommands.dll", - "MinimumApiVersion": "3.12.0" + "MinimumApiVersion": "3.12.1" } diff --git a/src/SMAPI.Mods.ErrorHandler/manifest.json b/src/SMAPI.Mods.ErrorHandler/manifest.json index c83ca3d0..8aa2a6a4 100644 --- a/src/SMAPI.Mods.ErrorHandler/manifest.json +++ b/src/SMAPI.Mods.ErrorHandler/manifest.json @@ -1,9 +1,9 @@ { "Name": "Error Handler", "Author": "SMAPI", - "Version": "3.12.0", + "Version": "3.12.1", "Description": "Handles some common vanilla errors to log more useful info or avoid breaking the game.", "UniqueID": "SMAPI.ErrorHandler", "EntryDll": "ErrorHandler.dll", - "MinimumApiVersion": "3.12.0" + "MinimumApiVersion": "3.12.1" } diff --git a/src/SMAPI.Mods.SaveBackup/manifest.json b/src/SMAPI.Mods.SaveBackup/manifest.json index 42f1af59..dbd65cbe 100644 --- a/src/SMAPI.Mods.SaveBackup/manifest.json +++ b/src/SMAPI.Mods.SaveBackup/manifest.json @@ -1,9 +1,9 @@ { "Name": "Save Backup", "Author": "SMAPI", - "Version": "3.12.0", + "Version": "3.12.1", "Description": "Automatically backs up all your saves once per day into its folder.", "UniqueID": "SMAPI.SaveBackup", "EntryDll": "SaveBackup.dll", - "MinimumApiVersion": "3.12.0" + "MinimumApiVersion": "3.12.1" } diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs index bfaee70e..05800970 100644 --- a/src/SMAPI/Constants.cs +++ b/src/SMAPI/Constants.cs @@ -60,7 +60,7 @@ namespace StardewModdingAPI internal static int? LogScreenId { get; set; } /// SMAPI's current raw semantic version. - internal static string RawApiVersion = "3.12.0"; + internal static string RawApiVersion = "3.12.1"; } /// Contains SMAPI's constants and assumptions. -- cgit