using System;
using StardewModdingAPI.Framework.Content;
using StardewModdingAPI.Framework.ContentManagers;
using StardewModdingAPI.Framework.Exceptions;
using StardewModdingAPI.Framework.Reflection;
namespace StardewModdingAPI.Framework.ModHelpers
{
///
internal class ModContentHelper : BaseHelper, IModContentHelper
{
/*********
** Fields
*********/
/// SMAPI's core content logic.
private readonly ContentCoordinator ContentCore;
/// A content manager for this mod which manages files from the mod's folder.
private readonly ModContentManager ModContentManager;
/// The friendly mod name for use in errors.
private readonly string ModName;
/// Simplifies access to private code.
private readonly Reflector Reflection;
/*********
** Public methods
*********/
/// Construct an instance.
/// SMAPI's core content logic.
/// The absolute path to the mod folder.
/// The mod using this instance.
/// The friendly mod name for use in errors.
/// The game content manager used for map tilesheets not provided by the mod.
/// Simplifies access to private code.
public ModContentHelper(ContentCoordinator contentCore, string modFolderPath, IModMetadata mod, string modName, IContentManager gameContentManager, Reflector reflection)
: base(mod)
{
string managedAssetPrefix = contentCore.GetManagedAssetPrefix(mod.Manifest.UniqueID);
this.ContentCore = contentCore;
this.ModContentManager = contentCore.CreateModContentManager(managedAssetPrefix, modName, modFolderPath, gameContentManager);
this.ModName = modName;
this.Reflection = reflection;
}
///
public T Load(string relativePath)
where T : notnull
{
IAssetName assetName = this.ContentCore.ParseAssetName(relativePath, allowLocales: false);
try
{
return this.ModContentManager.LoadExact(assetName, useCache: false);
}
catch (Exception ex) when (ex is not SContentLoadException)
{
throw new SContentLoadException(ContentLoadErrorType.Other, $"{this.ModName} failed loading content asset '{relativePath}' from its mod folder.", ex);
}
}
///
public IAssetName GetInternalAssetName(string relativePath)
{
return this.ModContentManager.GetInternalAssetKey(relativePath);
}
///
public IAssetData GetPatchHelper(T data, string? relativePath = null)
where T : notnull
{
if (data == null)
throw new ArgumentNullException(nameof(data), "Can't get a patch helper for a null value.");
relativePath ??= $"temp/{Guid.NewGuid():N}";
return new AssetDataForObject(
locale: this.ContentCore.GetLocale(),
assetName: this.ContentCore.ParseAssetName(relativePath, allowLocales: false),
data: data,
getNormalizedPath: key => this.ContentCore.ParseAssetName(key, allowLocales: false).Name,
reflection: this.Reflection
);
}
}
}