summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/Patching/GameLocationPatch.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-06-08 21:36:48 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-06-08 21:36:48 -0400
commit96c49021a1d943e2ade7dbb96be3de707d7665c9 (patch)
tree7400a0c0ab4e84fdcdd420367af62729ffc491b0 /src/SMAPI/Framework/Patching/GameLocationPatch.cs
parentf79431d6549e9fb447e295aa026a8eba8f5f1ba4 (diff)
parentdd7887e0beb94179886494d40359b02db8e6dbe4 (diff)
downloadSMAPI-96c49021a1d943e2ade7dbb96be3de707d7665c9.tar.gz
SMAPI-96c49021a1d943e2ade7dbb96be3de707d7665c9.tar.bz2
SMAPI-96c49021a1d943e2ade7dbb96be3de707d7665c9.zip
Merge branch 'add-harmony' into develop
# Conflicts: # docs/release-notes.md
Diffstat (limited to 'src/SMAPI/Framework/Patching/GameLocationPatch.cs')
-rw-r--r--src/SMAPI/Framework/Patching/GameLocationPatch.cs60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/SMAPI/Framework/Patching/GameLocationPatch.cs b/src/SMAPI/Framework/Patching/GameLocationPatch.cs
new file mode 100644
index 00000000..c0216b8f
--- /dev/null
+++ b/src/SMAPI/Framework/Patching/GameLocationPatch.cs
@@ -0,0 +1,60 @@
+using System.Diagnostics.CodeAnalysis;
+using System.IO;
+using System.Reflection;
+using Harmony;
+using StardewValley;
+using xTile.Tiles;
+
+namespace StardewModdingAPI.Framework.Patching
+{
+ /// <summary>A Harmony patch for the <see cref="GameLocation.updateSeasonalTileSheets"/> method.</summary>
+ internal class GameLocationPatch : IHarmonyPatch
+ {
+ /*********
+ ** Accessors
+ *********/
+ /// <summary>A unique name for this patch.</summary>
+ public string Name => $"{nameof(GameLocation)}.{nameof(GameLocation.updateSeasonalTileSheets)}";
+
+
+ /*********
+ ** Public methods
+ *********/
+ /// <summary>Apply the Harmony patch.</summary>
+ /// <param name="harmony">The Harmony instance.</param>
+ public void Apply(HarmonyInstance harmony)
+ {
+ MethodInfo method = AccessTools.Method(typeof(GameLocation), nameof(GameLocation.updateSeasonalTileSheets));
+ MethodInfo prefix = AccessTools.Method(this.GetType(), nameof(GameLocationPatch.Prefix));
+
+ harmony.Patch(method, new HarmonyMethod(prefix), null);
+ }
+
+
+ /*********
+ ** Private methods
+ *********/
+ /// <summary>An implementation of <see cref="GameLocation.updateSeasonalTileSheets"/> which correctly handles custom map tilesheets.</summary>
+ /// <param name="__instance">The location instance being patched.</param>
+ [SuppressMessage("ReSharper", "InconsistentNaming", Justification = "Argument name is defined by Harmony.")]
+ private static bool Prefix(GameLocation __instance)
+ {
+ if (!__instance.IsOutdoors || __instance.Name.Equals("Desert"))
+ return false;
+ foreach (TileSheet tilesheet in __instance.Map.TileSheets)
+ {
+ string imageSource = tilesheet.ImageSource;
+ string imageFile = Path.GetFileName(imageSource);
+ if (imageFile.StartsWith("spring_") || imageFile.StartsWith("summer_") || imageFile.StartsWith("fall_") || imageFile.StartsWith("winter_"))
+ {
+ string imageDir = Path.GetDirectoryName(imageSource);
+ if (string.IsNullOrWhiteSpace(imageDir))
+ imageDir = "Maps";
+ tilesheet.ImageSource = Path.Combine(imageDir, Game1.currentSeason + "_" + imageFile.Split('_')[1]);
+ }
+ }
+
+ return false;
+ }
+ }
+}