summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/ContentManagers
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-03-22 23:00:18 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-03-22 23:00:18 -0400
commitb07d2340a9a6da22ee0fd95f2c6ccca3939cb7ab (patch)
treec61a7108ff66071b9b6feb5446c6bd3e14ba8182 /src/SMAPI/Framework/ContentManagers
parentd3fbdf484a4d90365a55fb5058d75a8623f17d0f (diff)
downloadSMAPI-b07d2340a9a6da22ee0fd95f2c6ccca3939cb7ab.tar.gz
SMAPI-b07d2340a9a6da22ee0fd95f2c6ccca3939cb7ab.tar.bz2
SMAPI-b07d2340a9a6da22ee0fd95f2c6ccca3939cb7ab.zip
encapsulate & cache asset operation groups (#766)
This is needed for the upcoming Stardew Valley 1.6 to avoid duplicate checks between DoesAssetExist and Load calls, and to make sure the answer doesn't change between them.
Diffstat (limited to 'src/SMAPI/Framework/ContentManagers')
-rw-r--r--src/SMAPI/Framework/ContentManagers/GameContentManager.cs44
1 files changed, 6 insertions, 38 deletions
diff --git a/src/SMAPI/Framework/ContentManagers/GameContentManager.cs b/src/SMAPI/Framework/ContentManagers/GameContentManager.cs
index 7ed1fcda..642e526c 100644
--- a/src/SMAPI/Framework/ContentManagers/GameContentManager.cs
+++ b/src/SMAPI/Framework/ContentManagers/GameContentManager.cs
@@ -26,12 +26,6 @@ namespace StardewModdingAPI.Framework.ContentManagers
/// <summary>The assets currently being intercepted by <see cref="IAssetLoader"/> instances. This is used to prevent infinite loops when a loader loads a new asset.</summary>
private readonly ContextHash<string> AssetsBeingLoaded = new();
- /// <summary>Interceptors which provide the initial versions of matching assets.</summary>
- private IList<ModLinked<IAssetLoader>> Loaders => this.Coordinator.Loaders;
-
- /// <summary>Interceptors which edit matching assets after they're loaded.</summary>
- private IList<ModLinked<IAssetEditor>> Editors => this.Coordinator.Editors;
-
/// <summary>Maps asset names to their localized form, like <c>LooseSprites\Billboard => LooseSprites\Billboard.fr-FR</c> (localized) or <c>Maps\AnimalShop => Maps\AnimalShop</c> (not localized).</summary>
private IDictionary<string, string> LocalizedAssetNames => LocalizedContentManager.localizedAssetNames;
@@ -370,22 +364,9 @@ namespace StardewModdingAPI.Framework.ContentManagers
/// <param name="info">The basic asset metadata.</param>
private IEnumerable<AssetLoadOperation> GetLoaders<T>(IAssetInfo info)
{
- return this.Loaders
- .Where(loader =>
- {
- try
- {
- return loader.Data.CanLoad<T>(info);
- }
- catch (Exception ex)
- {
- loader.Mod.LogAsMod($"Mod failed when checking whether it could load asset '{info.Name}', and will be ignored. Error details:\n{ex.GetLogSummary()}", LogLevel.Error);
- return false;
- }
- })
- .Select(
- loader => new AssetLoadOperation(loader.Mod, assetInfo => loader.Data.Load<T>(assetInfo))
- );
+ return this.Coordinator
+ .GetAssetOperations<T>(info)
+ .SelectMany(p => p.LoadOperations);
}
/// <summary>Get the asset editors to apply to an asset.</summary>
@@ -393,22 +374,9 @@ namespace StardewModdingAPI.Framework.ContentManagers
/// <param name="info">The basic asset metadata.</param>
private IEnumerable<AssetEditOperation> GetEditors<T>(IAssetInfo info)
{
- return this.Editors
- .Where(editor =>
- {
- try
- {
- return editor.Data.CanEdit<T>(info);
- }
- catch (Exception ex)
- {
- editor.Mod.LogAsMod($"Mod crashed when checking whether it could edit asset '{info.Name}', and will be ignored. Error details:\n{ex.GetLogSummary()}", LogLevel.Error);
- return false;
- }
- })
- .Select(
- editor => new AssetEditOperation(editor.Mod, assetData => editor.Data.Edit<T>(assetData))
- );
+ return this.Coordinator
+ .GetAssetOperations<T>(info)
+ .SelectMany(p => p.EditOperations);
}
/// <summary>Assert that at most one loader will be applied to an asset.</summary>