summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2021-03-07 18:04:48 -0500
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2021-03-07 18:04:48 -0500
commit0ed46c09104b823a5784690fa50e7022efc12c8f (patch)
tree6e2259d828b761449b27b4c9df85e7bdaea401f9 /src/SMAPI/Framework
parent36cb8e8fcb8afd2965ffe26e7755eb11838264d7 (diff)
downloadSMAPI-0ed46c09104b823a5784690fa50e7022efc12c8f.tar.gz
SMAPI-0ed46c09104b823a5784690fa50e7022efc12c8f.tar.bz2
SMAPI-0ed46c09104b823a5784690fa50e7022efc12c8f.zip
add descriptive error for PathTooLongException which crashes SMAPI or the installer
Diffstat (limited to 'src/SMAPI/Framework')
-rw-r--r--src/SMAPI/Framework/Logging/LogManager.cs13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/Logging/LogManager.cs b/src/SMAPI/Framework/Logging/LogManager.cs
index f3656886..0dd45355 100644
--- a/src/SMAPI/Framework/Logging/LogManager.cs
+++ b/src/SMAPI/Framework/Logging/LogManager.cs
@@ -252,11 +252,22 @@ namespace StardewModdingAPI.Framework.Logging
break;
// missing content folder exception
- case FileNotFoundException ex when ex.Message == "Could not find file 'C:\\Program Files (x86)\\Steam\\SteamApps\\common\\Stardew Valley\\Content\\XACT\\FarmerSounds.xgs'.": // path in error is hardcoded regardless of install path
+ case FileNotFoundException ex when ex.Message == "Couldn't find file 'C:\\Program Files (x86)\\Steam\\SteamApps\\common\\Stardew Valley\\Content\\XACT\\FarmerSounds.xgs'.": // path in error is hardcoded regardless of install path
this.Monitor.Log("The game can't find its Content\\XACT\\FarmerSounds.xgs file. You can usually fix this by resetting your content files (see https://smapi.io/troubleshoot#reset-content ), or by uninstalling and reinstalling the game.", LogLevel.Error);
this.Monitor.Log($"Technical details: {ex.GetLogSummary()}");
break;
+ // path too long exception
+ case PathTooLongException:
+ {
+ string[] affectedPaths = PathUtilities.GetTooLongPaths(Constants.ModsPath).ToArray();
+ string message = affectedPaths.Any()
+ ? $"SMAPI can't launch because some of your mod files exceed the maximum path length on {Constants.Platform}.\nIf you need help fixing this error, see https://smapi.io/help\n\nAffected paths:\n {string.Join("\n ", affectedPaths)}"
+ : $"The game failed to launch: {exception.GetLogSummary()}";
+ this.MonitorForGame.Log(message, LogLevel.Error);
+ }
+ break;
+
// generic exception
default:
this.MonitorForGame.Log($"The game failed to launch: {exception.GetLogSummary()}", LogLevel.Error);