summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/Content
diff options
context:
space:
mode:
authoratravita-mods <94934860+atravita-mods@users.noreply.github.com>2022-08-22 22:35:08 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-10-08 13:27:06 -0400
commitc1d5d19e43a9305ebf71696408fc8a0777794f55 (patch)
treeb1f88a604135d04523c5048b126fa52f16c6c914 /src/SMAPI/Framework/Content
parentce63efa2f45ee770fdb628a45f5a6b63544b0031 (diff)
downloadSMAPI-c1d5d19e43a9305ebf71696408fc8a0777794f55.tar.gz
SMAPI-c1d5d19e43a9305ebf71696408fc8a0777794f55.tar.bz2
SMAPI-c1d5d19e43a9305ebf71696408fc8a0777794f55.zip
Skip transparent rows at the start and end when doing a patch overlay.
Diffstat (limited to 'src/SMAPI/Framework/Content')
-rw-r--r--src/SMAPI/Framework/Content/AssetDataForImage.cs51
1 files changed, 46 insertions, 5 deletions
diff --git a/src/SMAPI/Framework/Content/AssetDataForImage.cs b/src/SMAPI/Framework/Content/AssetDataForImage.cs
index bcdebff6..90468316 100644
--- a/src/SMAPI/Framework/Content/AssetDataForImage.cs
+++ b/src/SMAPI/Framework/Content/AssetDataForImage.cs
@@ -1,6 +1,7 @@
using System;
using System.Buffers;
using System.Diagnostics.CodeAnalysis;
+using System.Linq;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using StardewValley;
@@ -166,9 +167,51 @@ namespace StardewModdingAPI.Framework.Content
if (sourceArea.Size != targetArea.Size)
throw new InvalidOperationException("The source and target areas must be the same size.");
- // merge data
- if (patchMode == PatchMode.Overlay)
+ if (patchMode == PatchMode.Replace)
+ target.SetData(0, targetArea, sourceData, 0, pixelCount);
+ else
{
+ // merge data
+
+ // Content packs have a habit of using large amounts of blank space.
+ // Adjusting bounds to ignore transparent pixels at the start and end.
+
+ int startIndex = -1;
+ for (int i = 0; i < pixelCount; i++)
+ {
+ if (sourceData[i].A >= MinOpacity)
+ {
+ startIndex = i;
+ break;
+ }
+ }
+
+ if (startIndex == -1)
+ return;
+
+ int endIndex = -1;
+ for (int i = pixelCount - 1; i >= startIndex; i--)
+ {
+ if (sourceData[i].A >= MinOpacity)
+ {
+ endIndex = i;
+ break;
+ }
+ }
+
+ if (endIndex == -1)
+ return;
+
+ int topoffset = startIndex / sourceArea.Width;
+ int bottomoffset = endIndex / sourceArea.Width;
+
+ // Update target rectangle
+ targetArea = new(targetArea.X, targetArea.Y + topoffset, targetArea.Width, bottomoffset - topoffset + 1);
+
+ pixelCount = targetArea.Width * targetArea.Height;
+
+ int sourceoffset = topoffset * sourceArea.Width;
+
// get target data
Color[] mergedData = ArrayPool<Color>.Shared.Rent(pixelCount);
target.GetData(0, targetArea, mergedData, 0, pixelCount);
@@ -177,7 +220,7 @@ namespace StardewModdingAPI.Framework.Content
for (int i = 0; i < pixelCount; i++)
{
// ref locals here? Not sure.
- Color above = sourceData[i];
+ Color above = sourceData[sourceoffset + i];
Color below = mergedData[i];
// shortcut transparency
@@ -205,8 +248,6 @@ namespace StardewModdingAPI.Framework.Content
target.SetData(0, targetArea, mergedData, 0, pixelCount);
ArrayPool<Color>.Shared.Return(mergedData);
}
- else
- target.SetData(0, targetArea, sourceData, 0, pixelCount);
}
}
}